Skip to content

Commit 64e93ff

Browse files
committed
Don't support python 3.13 yet.
1 parent 5d12cf5 commit 64e93ff

File tree

3 files changed

+3
-18
lines changed

3 files changed

+3
-18
lines changed

.github/workflows/feature.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,14 @@ on:
66
- 'feature/*'
77

88
jobs:
9-
pre-commit:
10-
name: Run pre-commit
11-
runs-on: ubuntu-22.04
12-
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v4
15-
16-
- name: Setup Python
17-
uses: actions/setup-python@v4
18-
with:
19-
python-version: '3.8'
20-
21-
- name: Run pre-commit
22-
uses: pre-commit/action@v3.0.1
239

2410
unittests:
2511
name: Run tests
2612
runs-on: ubuntu-22.04
2713

2814
strategy:
2915
matrix:
30-
python-version: [3.8.18, 3.9.18, "3.10.13", 3.11.5, 3.12.0, 3.13.4]
16+
python-version: [3.8.18, 3.9.18, "3.10.13", 3.11.5, 3.12.0]
3117
fail-fast: false
3218

3319
steps:

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python-version: [3.8.18, 3.9.18, "3.10.13", 3.11.5, 3.12.0, 3.13.4]
16+
python-version: [3.8.18, 3.9.18, "3.10.13", 3.11.5, 3.12.0]
1717
fail-fast: false
1818

1919
steps:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
'Programming Language :: Python :: 3.10',
4444
'Programming Language :: Python :: 3.11',
4545
'Programming Language :: Python :: 3.12',
46-
'Programming Language :: Python :: 3.13',
4746
],
48-
python_requires='>=3.8',
47+
python_requires='>=3.8,!=3.13.*',
4948
)

0 commit comments

Comments
 (0)