Skip to content

Commit 9b0684f

Browse files
committed
Update tests pipeline and setup.py
1 parent 3748690 commit 9b0684f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests-and-linters.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
strategy:
2727
matrix:
28-
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
28+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
2929
steps:
3030
- uses: actions/checkout@v3
3131
- uses: actions/setup-python@v4
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v3
4949
- uses: actions/setup-python@v4
5050
with:
51-
python-version: 3.12
51+
python-version: 3.13
5252
- run: pip install tox 'cython>=3,<4'
5353
- run: make cythonize
5454
- run: tox -vv
@@ -65,7 +65,7 @@ jobs:
6565
- uses: actions/checkout@v3
6666
- uses: actions/setup-python@v4
6767
with:
68-
python-version: 3.12
68+
python-version: 3.13
6969
- run: pip install tox
7070
- run: tox
7171
env:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ def _open(filename):
111111
"Programming Language :: Python :: 3.10",
112112
"Programming Language :: Python :: 3.11",
113113
"Programming Language :: Python :: 3.12",
114+
"Programming Language :: Python :: 3.13",
114115
"Programming Language :: Python :: Implementation :: CPython",
115116
"Programming Language :: Python :: Implementation :: PyPy",
116117
"Framework :: AsyncIO",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
parallel_show_output = true
33
envlist=
4-
coveralls, pylint, flake8, pydocstyle, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy3.9, pypy3.10
4+
coveralls, pylint, flake8, pydocstyle, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 3.13, pypy3.9, pypy3.10
55

66
[testenv]
77
deps=

0 commit comments

Comments
 (0)