Skip to content

Commit 9865643

Browse files
committed
Add Python 3.14 to CI
1 parent 0aa206c commit 9865643

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ workflows:
221221
- common:
222222
matrix:
223223
parameters:
224-
python_minor_version: ["10", "11", "12", "13"]
224+
python_minor_version: ["10", "11", "12", "13", "14"]
225225
tox_env: [
226226
"lint",
227227
"core",
@@ -234,7 +234,7 @@ workflows:
234234
- geth:
235235
matrix:
236236
parameters:
237-
python_minor_version: ["10", "11", "12", "13"]
237+
python_minor_version: ["10", "11", "12", "13", "14"]
238238
tox_env: [
239239
"integration-goethereum-ipc",
240240
"integration-goethereum-ipc_async",
@@ -252,7 +252,7 @@ workflows:
252252
- windows-wheel:
253253
matrix:
254254
parameters:
255-
python_minor_version: ["10", "11", "12", "13"]
255+
python_minor_version: ["10", "11", "12", "13", "14"]
256256
name: "py3<< matrix.python_minor_version >>-windows-wheel"
257257

258258

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist=
3-
py{310,311,312,313}-{ens,core,lint,wheel}
4-
py{310,311,312,313}-integration-{goethereum,ethtester}
3+
py{310,311,312,313,314}-{ens,core,lint,wheel}
4+
py{310,311,312,313,314}-integration-{goethereum,ethtester}
55
docs
66
benchmark
77
windows-wheel
@@ -48,8 +48,9 @@ basepython =
4848
py311: python3.11
4949
py312: python3.12
5050
py313: python3.13
51+
py314: python3.14
5152

52-
[testenv:py{310,311,312,313}-lint]
53+
[testenv:py{310,311,312,313,314}-lint]
5354
deps=pre-commit
5455
extras=dev
5556
commands=
@@ -64,7 +65,7 @@ commands=
6465
python {toxinidir}/web3/tools/benchmark/main.py --num-calls 100
6566

6667

67-
[testenv:py{310,311,312,313}-wheel]
68+
[testenv:py{310,311,312,313,314}-wheel]
6869
deps=
6970
wheel
7071
build[virtualenv]

0 commit comments

Comments
 (0)