Skip to content

Commit 2b356a8

Browse files
committed
Run tests on Python 3.13
1 parent 90cdb48 commit 2b356a8

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
max-parallel: 4
3333
matrix:
3434
platform: [ubuntu-latest, macos-latest, windows-latest]
35-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
35+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
3636
# # TODO: Remove Windows exclusion when binary wheel available for lxml
3737
# exclude:
3838
# - { platform: windows-latest, python-version: "3.11" }

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
"Programming Language :: Python :: 3.10",
8080
"Programming Language :: Python :: 3.11",
8181
"Programming Language :: Python :: 3.12",
82+
"Programming Language :: Python :: 3.13",
8283
"Programming Language :: Python :: Implementation :: CPython",
8384
"Programming Language :: Python :: Implementation :: PyPy",
8485
],

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310,311,312}-{mac,linux,windows},pypy
2+
envlist = py{38,39,310,311,312,313}-{mac,linux,windows},pypy
33

44
[gh-actions]
55
python =
@@ -8,6 +8,7 @@ python =
88
3.10: py310
99
3.11: py311
1010
3.12: py312
11+
3.13: py313
1112

1213

1314
[testenv]
@@ -18,11 +19,11 @@ platform =
1819
extras =
1920
test
2021
{mac,linux}: xmlsec
21-
py{38,39,310,311,312}: async
22+
py{38,39,310,311,312,313}: async
2223
deps =
23-
py{38,39,310,311,312}: aioresponses==0.5.0
24-
py{38,39,310,311,312}: aiohttp==3.7.4
25-
py{38,39,310,311,312}: pytest-asyncio==0.11.0
24+
py{38,39,310,311,312,313}: aioresponses==0.5.0
25+
py{38,39,310,311,312,313}: aiohttp==3.7.4
26+
py{38,39,310,311,312,313}: pytest-asyncio==0.11.0
2627
commands = coverage run --parallel -m pytest {posargs}
2728

2829

0 commit comments

Comments
 (0)