Skip to content

Commit 78e818a

Browse files
authored
Drop support for Python 3.9 (#145)
1 parent c41456f commit 78e818a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
# when adding new versions, update the one used to test
2121
# friend projects below to the latest stable
22-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
22+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2323
os: [ubuntu-latest, macos-latest, windows-latest]
2424
test-set: [base]
2525
include:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ authors = [
1515
{ name = "Georg Brandl", email = "georg@python.org" },
1616
{ name = "Julien Palard", email = "julien@palard.fr" },
1717
]
18-
requires-python = ">=3.9"
18+
requires-python = ">=3.10"
1919
classifiers = [
2020
"Development Status :: 5 - Production/Stable",
2121
"Intended Audience :: Developers",
2222
"Natural Language :: English",
2323
"Programming Language :: Python :: 3 :: Only",
24-
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires =
33
tox>=4.2
44
env_list =
55
lint
6-
py{py3, 314, 313, 312, 311, 310, 39}
6+
py{py3, 314, 313, 312, 311, 310}
77

88
[testenv]
99
extras =

0 commit comments

Comments
 (0)