Skip to content

Commit 524d2ed

Browse files
committed
Drop Python 3.9 support
1 parent a358532 commit 524d2ed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ${{ matrix.os }}
3333
strategy:
3434
matrix:
35-
python-version: ['pypy-3.10', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14-dev']
35+
python-version: ['pypy-3.10', '3.10', '3.11', '3.12', '3.13', '3.14-dev']
3636
os: [ubuntu-latest, macos-latest, windows-latest]
3737
continue-on-error: ${{ matrix.python-version == '3.14-dev' }}
3838

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
{ name = "Taneli Hukkinen", email = "hukkin@users.noreply.github.com" },
1111
]
1212
license = { file = "LICENSE" }
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
readme = "README.md"
1515
classifiers = [
1616
"License :: OSI Approved :: MIT License",
@@ -50,7 +50,7 @@ xfail_strict = true
5050
[tool.tox]
5151
requires = ["tox>=4.21.1"]
5252
# Only run pytest envs when no args given to tox
53-
env_list = ["3.9", "3.10", "3.11", "3.12", "3.13"]
53+
env_list = ["3.10", "3.11", "3.12", "3.13"]
5454

5555
[tool.tox.env_run_base]
5656
description = "Run tests under {base_python}"

0 commit comments

Comments
 (0)