Skip to content

Commit e9c9937

Browse files
Add Python 3.13 and 3.14 to the CI builds
1 parent 7addcf4 commit e9c9937

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25-
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
25+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2626
fail-fast: false
2727
runs-on: ${{ matrix.os }}
2828
steps:

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[tox]
2-
envlist=flake8,py38,py39,py310,py311,py312,upy,cpy,benchmark,docs
2+
envlist=flake8,py38,py39,py310,py311,py312,py313,py314upy,cpy,benchmark,docs
33
skipsdist=True
44
skip_missing_interpreters=True
55

66
[gh-actions]
77
python =
8-
3.7: py37
98
3.8: py38
109
3.9: py39
1110
3.10: py310
1211
3.11: py311
1312
3.12: py312
13+
3.13: py313
14+
3.14: py314
1415
pypy3: pypy3
1516

1617
[testenv]

0 commit comments

Comments
 (0)