Skip to content

Commit 40d9a6f

Browse files
Drop Python 3.8, given its' end of life, and no longer supported on GitHub CI.
1 parent 4fd9777 commit 40d9a6f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ 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.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717
- name: Setup Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v1
18+
uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install Dependencies

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,18 @@
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.8",
3739
classifiers=[
3840
"License :: OSI Approved :: BSD License",
3941
"Programming Language :: Python :: 3",
40-
"Programming Language :: Python :: 3.7",
4142
"Programming Language :: Python :: 3.8",
4243
"Programming Language :: Python :: 3.9",
4344
"Programming Language :: Python :: 3.10",
4445
"Programming Language :: Python :: 3.11",
4546
"Programming Language :: Python :: 3.12",
47+
"Programming Language :: Python :: 3.13",
4648
"Programming Language :: Python :: 3 :: Only",
4749
"Programming Language :: Python",
4850
],

0 commit comments

Comments
 (0)