Skip to content

Commit c88a0b7

Browse files
authored
initial python 3.13 support (#421)
* initial python 3.13 support * declare python 3.13 support
1 parent f781040 commit c88a0b7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: blacksmith-4vcpu-ubuntu-2204
77
strategy:
88
matrix:
9-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
9+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1010
steps:
1111
- name: Install system packages
1212
run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ def run_setup(with_extensions=True):
218218
'Programming Language :: Python :: 3.9',
219219
'Programming Language :: Python :: 3.10',
220220
'Programming Language :: Python :: 3.11',
221+
'Programming Language :: Python :: 3.13',
221222
'Programming Language :: Python :: Implementation :: CPython',
222223
'Programming Language :: Python :: Implementation :: PyPy',
223224
'Operating System :: Microsoft :: Windows',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
requires =
33
tox-gh-actions
4-
envlist = {3.8,3.9,3.10,3.11,3.12}-unit
4+
envlist = {3.8,3.9,3.10,3.11,3.12,3.13}-unit
55
skip_missing_interpreters = True
66

77
[gh-actions]
@@ -11,6 +11,7 @@ python =
1111
3.10: 3.10-unit
1212
3.11: 3.11-unit
1313
3.12: 3.12-unit
14+
3.13: 3.13-unit
1415

1516
[testenv]
1617
distribute = True

0 commit comments

Comments
 (0)