Skip to content

Commit f3876fd

Browse files
authored
Python 3.13 support (#1002)
1 parent 62ab55e commit f3876fd

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

.github/workflows/ci-cd.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,10 @@ jobs:
150150
strategy:
151151
matrix:
152152
pyver:
153-
- 3.13-dev
153+
- 3.13
154154
- 3.12
155155
- 3.11
156-
- >-
157-
3.10
156+
- "3.10"
158157
- 3.9
159158
- 3.8
160159
no-extensions: ['', 'Y']
@@ -199,12 +198,7 @@ jobs:
199198
uses: actions/setup-python@v5
200199
with:
201200
python-version: ${{ matrix.pyver }}
202-
allow-prereleases: >-
203-
${{
204-
endsWith(matrix.pyver, '-dev')
205-
&& true
206-
|| false
207-
}}
201+
allow-prereleases: true
208202
- name: Get pip cache dir
209203
id: pip-cache
210204
run: |

CHANGES/1002.feature.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added support for Python 3.13 -- by :user:`bdraco`.

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ classifiers =
3939
Programming Language :: Python :: 3.10
4040
Programming Language :: Python :: 3.11
4141
Programming Language :: Python :: 3.12
42+
Programming Language :: Python :: 3.13
4243

4344
[options]
4445
python_requires = >= 3.8

0 commit comments

Comments
 (0)