Skip to content

Commit 95b4cbb

Browse files
committed
not all can work on Python 3.13 yet
1 parent 26f3dc2 commit 95b4cbb

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.10", "3.11", "3.12", "3.13-dev"]
11+
python-version: ["3.10", "3.11", "3.12"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10", "3.11", "3.12", "3.13-dev"]
10+
python-version: ["3.10", "3.11", "3.12"]
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.10", "3.11", "3.12", "3.13-dev"]
12+
python-version: ["3.10", "3.11", "3.12"]
1313

1414
steps:
1515
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers = [
1616
'Programming Language :: Python :: 3.10',
1717
'Programming Language :: Python :: 3.11',
1818
'Programming Language :: Python :: 3.12',
19-
'Programming Language :: Python :: 3.13',
2019
'Programming Language :: Python :: 3 :: Only',
2120
'License :: OSI Approved :: MIT License',
2221
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)