Skip to content

Commit 997b27f

Browse files
committed
Add support for python 3.14
1 parent e681a35 commit 997b27f

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: 3.11",
1414
"Programming Language :: Python :: 3.12",
1515
"Programming Language :: Python :: 3.13",
16+
"Programming Language :: Python :: 3.14",
1617
]
1718
dependencies = [
1819
"aiohttp>=3",

taskcluster/kinds/docker-image/kind.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ task-defaults:
1515
UV_VERSION: "0.7.9"
1616

1717
tasks:
18+
python3.14:
19+
definition: python
20+
args:
21+
PYTHON_VERSION: "3.14"
1822
python3.13:
1923
definition: python
2024
args:

taskcluster/kinds/tox/kind.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ tasks:
5151
targets: py313,check
5252
env:
5353
NO_TESTS_OVER_WIRE: "1"
54+
py314:
55+
python-version: "3.14"
56+
targets: py314,check
57+
env:
58+
NO_TESTS_OVER_WIRE: "1"
5459
py311-cot:
5560
python-version: "3.11"
5661
targets: py311-cot
@@ -72,3 +77,10 @@ tasks:
7277
NO_CREDENTIALS_TESTS: "1"
7378
scopes:
7479
- secrets:get:repo:github.com/mozilla-releng/scriptworker:github
80+
py314-cot:
81+
python-version: "3.14"
82+
targets: py314-cot
83+
env:
84+
NO_CREDENTIALS_TESTS: "1"
85+
scopes:
86+
- secrets:get:repo:github.com/mozilla-releng/scriptworker:github

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ commands=
4848
commands=
4949
py.test -k test_verify_production_cot --random-order-bucket=none
5050

51+
[testenv:py314-cot]
52+
commands=
53+
py.test -k test_verify_production_cot --random-order-bucket=none
54+
5155
[testenv:check]
5256
skip_install = true
5357
commands =

0 commit comments

Comments
 (0)