Skip to content

Commit 6a9a967

Browse files
Drop Python 3.8 and 3.9, given they are end of life, and no longer supported on GitHub CI.
1 parent 4fd9777 commit 6a9a967

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
13+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1414

1515
steps:
1616
- uses: actions/checkout@v2

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,17 @@
3333
"prompt_toolkit>=3.0.43,<3.1.0",
3434
"pygments",
3535
],
36-
python_requires=">=3.7",
36+
# Python 3.7 will probably still work, but is end of life and no longer
37+
# available on GitHub-CI.
38+
python_requires=">=3.9",
3739
classifiers=[
3840
"License :: OSI Approved :: BSD License",
3941
"Programming Language :: Python :: 3",
40-
"Programming Language :: Python :: 3.7",
41-
"Programming Language :: Python :: 3.8",
4242
"Programming Language :: Python :: 3.9",
4343
"Programming Language :: Python :: 3.10",
4444
"Programming Language :: Python :: 3.11",
4545
"Programming Language :: Python :: 3.12",
46+
"Programming Language :: Python :: 3.13",
4647
"Programming Language :: Python :: 3 :: Only",
4748
"Programming Language :: Python",
4849
],

0 commit comments

Comments
 (0)