diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fc03a3c847e..677f85512c5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,6 @@ jobs: fail-fast: false matrix: python-version: - - "3.10" - "3.11" - "3.12" - "3.13" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 59ce5ac8f89..892c098f911 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -53,8 +53,7 @@ repos: - id: black name: "Format with Black" args: - - '--target-version=py39' - - '--target-version=py310' + - '--target-version=py311' files: '^(peps/conf\.py|pep_sphinx_extensions/tests/.*)$' - repo: https://github.com/astral-sh/ruff-pre-commit diff --git a/.ruff.toml b/.ruff.toml index 48a164b16f7..5e0a0fa17f3 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -1,5 +1,5 @@ output-format = "full" -target-version = "py310" +target-version = "py311" [lint] ignore = [ diff --git a/tox.ini b/tox.ini index 01b19e98616..00b6b2660fa 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ requires = tox>=4.2 env_list = - py{315, 314, 313, 312, 311, 310} + py{315, 314, 313, 312, 311} no_package = true [testenv]