Skip to content

Commit 28ac28c

Browse files
committed
Add Python 3.13 to tests matrix
1 parent ce30a3f commit 28ac28c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
strategy:
6161
matrix:
62-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
62+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
6363

6464
steps:
6565
- uses: actions/checkout@v3

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
bottle==0.12.25
1+
bottle>=0.12.25
22
asyncore-wsgi>=0.0.11
33
selenium==4.10.0
44
Pylint==2.15.0

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,310,311,312}
2+
envlist = py{38,39,310,311,312,313}
33

44
[testenv]
55
commands=
@@ -8,9 +8,9 @@ commands=
88

99
[gh-actions]
1010
python =
11-
3.7: py37
1211
3.8: py38
1312
3.9: py39
1413
3.10: py310
1514
3.11: py311
1615
3.12: py312
16+
3.13: py313

0 commit comments

Comments
 (0)