Skip to content

Commit 12e988d

Browse files
committed
Drop Python 3.7/3.8 from CI matrix, add 3.13
Python 3.7 and 3.8 are no longer available on ubuntu-latest (24.04), causing all CI jobs to fail via fail-fast cancellation. Bump minimum supported version to 3.9 and add 3.13 to the matrix.
1 parent ede9092 commit 12e988d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ ubuntu-latest, macos-latest ]
10-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
10+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- uses: actions/checkout@v4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def find_version(*file_paths: str) -> str:
3333
"License :: OSI Approved :: MIT License",
3434
"Operating System :: OS Independent",
3535
],
36-
python_requires=">=3.7",
36+
python_requires=">=3.9",
3737
install_requires=[
3838
"typing_inspect",
3939
'pyyaml'

0 commit comments

Comments
 (0)