Skip to content

Commit 07ee37e

Browse files
authored
chore: update supported versions (#342)
- Python 3.9 is no longer supported - PyPy 3.11 is the only currently supported version Refs: https://peps.python.org/pep-0596/#lifespan Refs: #334 (comment) Signed-off-by: Mike Fiedler <[email protected]>
1 parent bf4b201 commit 07ee37e

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
python-version:
10-
- "pypy-3.9"
11-
- "pypy-3.10"
1210
- "pypy-3.11"
13-
- "3.9"
1411
- "3.10"
1512
- "3.11"
1613
- "3.12"

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ classifiers = [
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
2626
"Programming Language :: Python :: 3 :: Only",
27-
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",
3029
"Programming Language :: Python :: 3.12",
@@ -34,7 +33,7 @@ classifiers = [
3433
"Programming Language :: Python :: Implementation :: PyPy",
3534
"Typing :: Typed"
3635
]
37-
requires-python = ">=3.9"
36+
requires-python = ">=3.10"
3837

3938
[project.optional-dependencies]
4039
md = ["cmarkgfm>=0.8.0"]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py{39, 310, 311, 312, 313, 314}
4-
pypy{39, 310, 311}
3+
py{310, 311, 312, 313, 314}
4+
pypy{311}
55
pep8
66
packaging
77
noextra

0 commit comments

Comments
 (0)