diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c56c51e..89906c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.11", "3.12", "3.13", "3.14"] env: HATCH_ENV: "ci" steps: diff --git a/pyproject.toml b/pyproject.toml index be71637..2579623 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,13 +2,12 @@ name = "template-python" description = "Your project description here." readme = "docs/index.md" -requires-python = ">=3.10,<4" +requires-python = ">=3.11,<4" license = "MIT" authors = [{ name = "Your Name" }] classifiers = [ "Natural Language :: English", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", @@ -42,7 +41,7 @@ requires = ["hatchling>=1.26.3,<2"] build-backend = "hatchling.build" [tool.basedpyright] -pythonVersion = "3.10" +pythonVersion = "3.11" [tool.coverage.report] exclude_lines = ["if TYPE_CHECKING:", "pragma: no cover"]