Skip to content

Commit 787a5c2

Browse files
committed
ci: test with python 3.14
1 parent 2aa93b7 commit 787a5c2

3 files changed

Lines changed: 43 additions & 43 deletions

File tree

taskcluster/kinds/docker-image/kind.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ transforms:
1212

1313
meta:
1414
- &py311 "3.11.9"
15-
- &py313 "3.13.12"
15+
- &py314 "3.14.3"
1616
- &uv_version "0.7.15"
1717

1818
tasks:
@@ -21,10 +21,10 @@ tasks:
2121
args:
2222
PYTHON_VERSION: *py311
2323
UV_VERSION: *uv_version
24-
python313:
24+
python314:
2525
definition: base-test
2626
args:
27-
PYTHON_VERSION: *py313
27+
PYTHON_VERSION: *py314
2828
UV_VERSION: *uv_version
2929

3030
# Used by push-image kind
@@ -110,21 +110,21 @@ tasks:
110110
PYTHON_VERSION: *py311
111111
APT_PACKAGES: osslsigncode cmake clang
112112

113-
pushapkscript-test-py313:
113+
pushapkscript-test-py314:
114114
definition: base-test
115115
args:
116-
PYTHON_VERSION: *py313
116+
PYTHON_VERSION: *py314
117117
APT_PACKAGES: default-jdk
118118

119-
pushflatpakscript-test-py313:
119+
pushflatpakscript-test-py314:
120120
definition: base-test
121121
args:
122-
PYTHON_VERSION: *py313
122+
PYTHON_VERSION: *py314
123123
# Copied from pushflatpakscript/docker.d/image_setup.sh
124124
APT_PACKAGES: gir1.2-ostree-1.0 libgirepository1.0-dev ostree
125125

126-
signingscript-test-py313:
126+
signingscript-test-py314:
127127
definition: base-test
128128
args:
129-
PYTHON_VERSION: *py313
129+
PYTHON_VERSION: *py314
130130
APT_PACKAGES: osslsigncode cmake clang

taskcluster/kinds/tox/kind.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ task-defaults:
4343
- tox.ini
4444
- uv.lock
4545
matrix:
46-
python: ["311", "313"]
46+
python: ["311", "314"]
4747

4848
tasks:
4949
addonscript:

tox.ini

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -108,89 +108,89 @@ changedir = {toxinidir}/treescript
108108
commands =
109109
tox -e py311
110110

111-
[testenv:addonscript-py313]
111+
[testenv:addonscript-py314]
112112
changedir = {toxinidir}/addonscript
113113
commands =
114-
tox -e py313
114+
tox -e py314
115115

116-
[testenv:balrogscript-py313]
116+
[testenv:balrogscript-py314]
117117
changedir = {toxinidir}/balrogscript
118118
commands =
119-
tox -e py313
119+
tox -e py314
120120

121-
[testenv:beetmoverscript-py313]
121+
[testenv:beetmoverscript-py314]
122122
changedir = {toxinidir}/beetmoverscript
123123
commands =
124-
tox -e py313
124+
tox -e py314
125125

126-
[testenv:bitrisescript-py313]
126+
[testenv:bitrisescript-py314]
127127
changedir = {toxinidir}/bitrisescript
128128
commands =
129-
tox -e py313
129+
tox -e py314
130130

131-
[testenv:bouncerscript-py313]
131+
[testenv:bouncerscript-py314]
132132
changedir = {toxinidir}/bouncerscript
133133
commands =
134-
tox -e py313
134+
tox -e py314
135135

136-
[testenv:configloader-py313]
136+
[testenv:configloader-py314]
137137
changedir = {toxinidir}/configloader
138138
commands =
139-
tox -e py313
139+
tox -e py314
140140

141-
[testenv:init-py313]
141+
[testenv:init-py314]
142142
commands =
143143
pytest -n auto tests
144144

145-
[testenv:iscript-py313]
145+
[testenv:iscript-py314]
146146
changedir = {toxinidir}/iscript
147147
commands =
148-
tox -e py313
148+
tox -e py314
149149

150-
[testenv:githubscript-py313]
150+
[testenv:githubscript-py314]
151151
changedir = {toxinidir}/githubscript
152152
commands =
153-
tox -e py313
153+
tox -e py314
154154

155-
[testenv:landoscript-py313]
155+
[testenv:landoscript-py314]
156156
changedir = {toxinidir}/landoscript
157157
commands =
158-
tox -e py313
158+
tox -e py314
159159

160-
[testenv:pushapkscript-py313]
160+
[testenv:pushapkscript-py314]
161161
changedir = {toxinidir}/pushapkscript
162162
commands =
163-
tox -e py313
163+
tox -e py314
164164

165-
[testenv:pushflatpakscript-py313]
165+
[testenv:pushflatpakscript-py314]
166166
changedir = {toxinidir}/pushflatpakscript
167167
commands =
168-
tox -e py313
168+
tox -e py314
169169

170-
[testenv:pushmsixscript-py313]
170+
[testenv:pushmsixscript-py314]
171171
changedir = {toxinidir}/pushmsixscript
172172
commands =
173-
tox -e py313
173+
tox -e py314
174174

175-
[testenv:scriptworker_client-py313]
175+
[testenv:scriptworker_client-py314]
176176
changedir = {toxinidir}/scriptworker_client
177177
commands =
178-
tox -e py313,mypy
178+
tox -e py314,mypy
179179

180-
[testenv:shipitscript-py313]
180+
[testenv:shipitscript-py314]
181181
changedir = {toxinidir}/shipitscript
182182
commands =
183-
tox -e py313
183+
tox -e py314
184184

185-
[testenv:signingscript-py313]
185+
[testenv:signingscript-py314]
186186
changedir = {toxinidir}/signingscript
187187
commands =
188-
tox -e py313
188+
tox -e py314
189189

190-
[testenv:treescript-py313]
190+
[testenv:treescript-py314]
191191
changedir = {toxinidir}/treescript
192192
commands =
193-
tox -e py313
193+
tox -e py314
194194

195195
[testenv:ruff]
196196
commands =

0 commit comments

Comments
 (0)