Skip to content

Commit 6df0dd5

Browse files
committed
Add support for Python 3.13
Signed-off-by: Tsuyoshi Hombashi <tsuyoshi.hombashi@gmail.com>
1 parent 2a6d0f1 commit 6df0dd5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
strategy:
114114
fail-fast: false
115115
matrix:
116-
python-version: ["3.9", "3.10", "3.11", "3.12"]
116+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
117117
os: [ubuntu-latest]
118118
concurrency:
119119
group: ${{ github.event_name }}-${{ github.workflow }}-unit-test-${{ matrix.os }}-${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ def get_release_command_class():
8787
"Programming Language :: Python :: 3.10",
8888
"Programming Language :: Python :: 3.11",
8989
"Programming Language :: Python :: 3.12",
90+
"Programming Language :: Python :: 3.13",
9091
"Topic :: System :: Operating System Kernels :: Linux",
9192
"Topic :: System :: Networking",
9293
"Topic :: System :: Systems Administration",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312}
3+
py{39,310,311,312,313}
44
buildwhl
55
docs
66
fmt

0 commit comments

Comments
 (0)