Skip to content

Commit 352f6b1

Browse files
authored
Merge pull request #751 from LincolnPuzey/test_on_python_314
Test and declare support for python 3.14
2 parents ab2aa1f + 69acb55 commit 352f6b1

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: lint
77
steps:
88
- uses: actions/checkout@master
9-
- uses: actions/setup-python@v4
9+
- uses: actions/setup-python@v5
1010
with:
1111
python-version: "3.13"
1212
- run: |
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
os: ["ubuntu-24.04"]
26-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
26+
python: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14-dev"]
2727
concurrency: ["cpython", "gevent"]
2828

2929
runs-on: ${{ matrix.os }}
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- uses: actions/checkout@master
52-
- uses: actions/setup-python@v4
52+
- uses: actions/setup-python@v5
5353
with:
5454
python-version: ${{ matrix.python }}
5555
- run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v3
13-
- uses: actions/setup-python@v4
13+
- uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.13"
1616

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ def rel(*xs):
118118
"Programming Language :: Python :: 3.11",
119119
"Programming Language :: Python :: 3.12",
120120
"Programming Language :: Python :: 3.13",
121+
"Programming Language :: Python :: 3.14",
121122
"Programming Language :: Python :: 3 :: Only",
122123
"Topic :: System :: Distributed Computing",
123124
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
py{39,310,311,312,313}{,-gevent}
3+
py{39,310,311,312,313,314}{,-gevent}
44
docs
55
lint
66

@@ -14,7 +14,7 @@ commands=
1414
passenv=
1515
TRAVIS
1616

17-
[testenv:py{39,310,311,312,313}-gevent]
17+
[testenv:py{39,310,311,312,313,314}-gevent]
1818
setenv =
1919
PYTHONTRACEMALLOC=1
2020
extras=

0 commit comments

Comments
 (0)