Skip to content

Commit 8ff09e7

Browse files
authored
Merge pull request #24 from jelmer/newer-py
Bump minimum python to 3.9, add tests for 3.12 and 3.13
2 parents 6f14f74 + 5ed6efc commit 8ff09e7

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
14+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
1717
- uses: actions/checkout@v3

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ the extras authors. See LICENSE for details.
2929
Required Dependencies
3030
---------------------
3131

32-
* Python 3.7+
32+
* Python 3.9+
3333

3434

3535
Bug reports and patches

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,11 @@ def get_long_description():
4141
"License :: OSI Approved :: MIT License",
4242
"Programming Language :: Python",
4343
"Programming Language :: Python :: 3",
44-
"Programming Language :: Python :: 3.6",
45-
"Programming Language :: Python :: 3.7",
46-
"Programming Language :: Python :: 3.8",
4744
"Programming Language :: Python :: 3.9",
4845
"Programming Language :: Python :: 3.10",
4946
"Programming Language :: Python :: 3.11",
47+
"Programming Language :: Python :: 3.12",
48+
"Programming Language :: Python :: 3.13",
5049
"Programming Language :: Python :: Implementation :: CPython",
5150
"Programming Language :: Python :: Implementation :: PyPy",
5251
],

0 commit comments

Comments
 (0)