Skip to content

Commit

Permalink
Run tests on Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mvantellingen committed Oct 13, 2024
1 parent 2742021 commit 5cb6677
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
max-parallel: 4
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
# # TODO: Remove Windows exclusion when binary wheel available for lxml
# exclude:
# - { platform: windows-latest, python-version: "3.11" }
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
Expand Down
11 changes: 6 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312}-{mac,linux,windows},pypy
envlist = py{38,39,310,311,312,313}-{mac,linux,windows},pypy

[gh-actions]
python =
Expand All @@ -8,6 +8,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313


[testenv]
Expand All @@ -18,11 +19,11 @@ platform =
extras =
test
{mac,linux}: xmlsec
py{38,39,310,311,312}: async
py{38,39,310,311,312,313}: async
deps =
py{38,39,310,311,312}: aioresponses==0.5.0
py{38,39,310,311,312}: aiohttp==3.7.4
py{38,39,310,311,312}: pytest-asyncio==0.11.0
py{38,39,310,311,312,313}: aioresponses==0.5.0
py{38,39,310,311,312,313}: aiohttp==3.7.4
py{38,39,310,311,312,313}: pytest-asyncio==0.11.0
commands = coverage run --parallel -m pytest {posargs}


Expand Down

0 comments on commit 5cb6677

Please sign in to comment.