Skip to content

Commit 1f4cd3b

Browse files
Add 3.14 and pypy-3.11 CI tasks
1 parent bab4a10 commit 1f4cd3b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [windows-latest, macos-latest, ubuntu-latest]
19-
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.10']
19+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11']
2020
exclude:
2121
# pypy3 currently fails to run on Windows
2222
- os: windows-latest
23-
python: pypy-3.10
23+
python: pypy-3.11
2424
fail-fast: false
2525
runs-on: ${{ matrix.os }}
2626
steps:

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ client = [
3434
asyncio_client = [
3535
"aiohttp >= 3.4",
3636
]
37+
dev = [
38+
"tox",
39+
]
3740
docs = [
3841
"sphinx",
3942
]

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=flake8,py{38,39,310,311,312,313},docs
2+
envlist=flake8,py{38,39,310,311,312,313,314},docs
33
skip_missing_interpreters=True
44

55
[gh-actions]
@@ -10,6 +10,7 @@ python =
1010
3.11: py311
1111
3.12: py312
1212
3.13: py313
13+
3.14: py314
1314
pypy-3: pypy3
1415

1516
[testenv]

0 commit comments

Comments
 (0)