Add python 3.14 support, drop python 3.9 (#41)

This commit is contained in:
2025-10-08 15:12:06 +02:00
committed by GitHub
parent 281bed94a4
commit 729205955e
3 changed files with 89 additions and 89 deletions

View File

@@ -10,17 +10,17 @@ authors = [
{ name = "Paillat-dev", email = "me@paillat.dev" }
]
license = "MIT"
requires-python = ">=3.9,<3.14"
requires-python = ">=3.10,<3.15"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Typing :: Typed",
"Operating System :: OS Independent",
]
@@ -95,7 +95,7 @@ exclude = [
packages = ["src/dismoji"]
[tool.pyright]
pythonVersion = "3.9"
pythonVersion = "3.10"
typeCheckingMode = "all"
reportUnusedCallResult = false
reportAny = false
@@ -105,7 +105,7 @@ executionEnvironments = [
]
[tool.ruff]
target-version = "py39"
target-version = "py310"
line-length = 120
indent-width = 4