Skip to content

Commit 78ad4ac

Browse files
authored
Drop support for Python 3.9 (#68)
1 parent 4423aa9 commit 78ad4ac

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
17+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1818

1919
steps:
2020
- uses: actions/checkout@v5

.ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
target-version = "py39"
1+
target-version = "py310"
22

33
[format]
44
preview = true

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ maintainers = [
1515
authors = [
1616
{ name = "Larry Hastings", email = "larry@hastings.org" },
1717
]
18-
requires-python = ">=3.9"
18+
requires-python = ">=3.10"
1919
classifiers = [
2020
"Intended Audience :: Developers",
2121
"License :: OSI Approved :: BSD License",
2222
"Programming Language :: Python :: 3 :: Only",
23-
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
2625
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires =
33
tox>=4.2
44
env_list =
5-
py{314, 313, 312, 311, 310, 39}
5+
py{314, 313, 312, 311, 310}
66

77
[testenv]
88
extras =

0 commit comments

Comments
 (0)