Skip to content

Commit 4b89447

Browse files
authored
Merge pull request #92 from simahawk/drop-py37
Update CI py versions
2 parents b2f19f8 + 32e93a3 commit 4b89447

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.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.7", "3.8", "3.9", "3.10", "3.11"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818
steps:
1919
- uses: "actions/checkout@v3"
2020
- uses: "actions/setup-python@v4"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
'GNU Affero General Public License v3 or later (AGPLv3+)',
1717
'Operating System :: POSIX',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.7',
20-
'Programming Language :: Python :: 3.8',
2119
'Programming Language :: Python :: 3.9',
2220
'Programming Language :: Python :: 3.10',
2321
'Programming Language :: Python :: 3.11',
22+
'Programming Language :: Python :: 3.12',
23+
'Programming Language :: Python :: 3.13',
2424
"Topic :: Utilities",
2525
"Topic :: System :: Shells",
2626
],

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[gh-actions]
22
python =
3-
3.7: py37
4-
3.8: py38
53
3.9: py39
64
3.10: py310
75
3.11: py311
6+
3.12: py312
7+
3.13: py313
88

99
[tox]
10-
envlist = py37, py38, py39, py310, py311
10+
envlist = py39, py310, py311, py312, py313
1111

1212
[testenv]
1313
passenv =

0 commit comments

Comments
 (0)