diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e057f3e..2020dae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/setup-python@v6 with: python-version: | - 3.10 + 3.11 3.14 - name: install requirements diff --git a/noxfile.py b/noxfile.py index 05cdc55..98ebb38 100644 --- a/noxfile.py +++ b/noxfile.py @@ -11,7 +11,7 @@ PYTHON_VERSIONS = None if "GITHUB_ACTIONS" in os.environ: - PYTHON_VERSIONS = ["3.10", "3.14"] + PYTHON_VERSIONS = ["3.11", "3.14"] @nox.session diff --git a/pyproject.toml b/pyproject.toml index 4f26c23..0b40fa3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "fillname" authors = [{ name = "Author Fillname", email = "author@fillname.org" }] description = "A template project." -requires-python = ">=3.10" +requires-python = ">=3.11" license = { file = "LICENSE" } dynamic = ["version"] readme = "README.md"