From db414631c7bcc5579614858e6891571f680e3960 Mon Sep 17 00:00:00 2001 From: Taneli Hukkinen Date: Wed, 24 Sep 2025 11:15:23 +0300 Subject: [PATCH] Drop Python 3.9 support --- .github/workflows/tests.yaml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index af77a9f..e5cf0ac 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -32,7 +32,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['pypy-3.10', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14-dev'] + python-version: ['pypy-3.10', '3.10', '3.11', '3.12', '3.13', '3.14-dev'] os: [ubuntu-latest, macos-latest, windows-latest] continue-on-error: ${{ matrix.python-version == '3.14-dev' }} diff --git a/pyproject.toml b/pyproject.toml index 37738fd..c6dae88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ { name = "Taneli Hukkinen", email = "hukkin@users.noreply.github.com" }, ] license = { file = "LICENSE" } -requires-python = ">=3.9" +requires-python = ">=3.10" readme = "README.md" classifiers = [ "License :: OSI Approved :: MIT License", @@ -50,7 +50,7 @@ xfail_strict = true [tool.tox] requires = ["tox>=4.21.1"] # Only run pytest envs when no args given to tox -env_list = ["3.9", "3.10", "3.11", "3.12", "3.13"] +env_list = ["3.10", "3.11", "3.12", "3.13"] [tool.tox.env_run_base] description = "Run tests under {base_python}"