Skip to content

Commit 2f06cf1

Browse files
Test with declare support for Python up to 3.13
1 parent b7ccf17 commit 2f06cf1

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yaml

+1-1
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.7", "3.8", "3.10", "3.11"]
10+
python-version: ["3.7", "3.8", "3.10", "3.11", "3.12", "3.13"]
1111
include:
1212
- python-version: "3.9"
1313
use_coverage: 'coverage'

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,7 @@
8383
"Programming Language :: Python :: 3.9",
8484
"Programming Language :: Python :: 3.10",
8585
"Programming Language :: Python :: 3.11",
86+
"Programming Language :: Python :: 3.12",
87+
"Programming Language :: Python :: 3.13",
8688
],
8789
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py3{6,7,8,9}
4-
py3{6,7,8,9}-functional
3+
py3{6,7,8,9,10,11,12,13}
4+
py3{6,7,8,9,10,11,12,13}-functional
55

66
[testenv]
77
passenv = TOXENV,CI,TRAVIS,TRAVIS_*

0 commit comments

Comments
 (0)