Skip to content

Commit 3c412f8

Browse files
committed
add py3.13 to supported versions
1 parent 8b76dfc commit 3c412f8

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ workflows:
225225
- common:
226226
matrix:
227227
parameters:
228-
python_minor_version: ["8", "9", "10", "11", "12"]
228+
python_minor_version: ["8", "9", "10", "11", "12", "13"]
229229
tox_env: [
230230
"lint",
231231
"core",
@@ -238,7 +238,7 @@ workflows:
238238
- geth:
239239
matrix:
240240
parameters:
241-
python_minor_version: ["8", "9", "10", "11", "12"]
241+
python_minor_version: ["8", "9", "10", "11", "12", "13"]
242242
tox_env: [
243243
"integration-goethereum-ipc",
244244
"integration-goethereum-ipc_async",
@@ -257,7 +257,7 @@ workflows:
257257
- windows-wheel:
258258
matrix:
259259
parameters:
260-
python_minor_version: ["10", "11", "12"]
260+
python_minor_version: ["10", "11", "12", "13"]
261261
name: "py3<< matrix.python_minor_version >>-windows-wheel"
262262

263263

newsfragments/3493.internal.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add python 3.13 support

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,6 @@
100100
"Programming Language :: Python :: 3.10",
101101
"Programming Language :: Python :: 3.11",
102102
"Programming Language :: Python :: 3.12",
103+
"Programming Language :: Python :: 3.13",
103104
],
104105
)

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{38,39,310,311,312}-{ens,core,lint,wheel}
4-
py{38,39,310,311,312}-integration-{goethereum,ethtester}
3+
py{38,39,310,311,312,313}-{ens,core,lint,wheel}
4+
py{38,39,310,311,312,313}-integration-{goethereum,ethtester}
55
docs
66
benchmark
77
windows-wheel
@@ -50,8 +50,9 @@ basepython =
5050
py310: python3.10
5151
py311: python3.11
5252
py312: python3.12
53+
py313: python3.13
5354

54-
[testenv:py{38,39,310,311,312}-lint]
55+
[testenv:py{38,39,310,311,312,313}-lint]
5556
deps=pre-commit
5657
extras=dev
5758
commands=
@@ -66,7 +67,7 @@ commands=
6667
python {toxinidir}/web3/tools/benchmark/main.py --num-calls 100
6768

6869

69-
[testenv:py{38,39,310,311,312}-wheel]
70+
[testenv:py{38,39,310,311,312,313}-wheel]
7071
deps=
7172
wheel
7273
build[virtualenv]

0 commit comments

Comments
 (0)