From ce6bbb5ee1a03fdd79a561768f7d474f5bfa04f6 Mon Sep 17 00:00:00 2001 From: pacrob <5199899+pacrob@users.noreply.github.com> Date: Fri, 20 Sep 2024 10:08:18 -0600 Subject: [PATCH] add py3.13 to supported versions --- .circleci/config.yml | 6 +++--- setup.py | 1 + tox.ini | 9 +++++---- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ca76b3632..3a1bfb35a1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -225,7 +225,7 @@ workflows: - common: matrix: parameters: - python_minor_version: ["8", "9", "10", "11", "12"] + python_minor_version: ["8", "9", "10", "11", "12", "13"] tox_env: [ "lint", "core", @@ -238,7 +238,7 @@ workflows: - geth: matrix: parameters: - python_minor_version: ["8", "9", "10", "11", "12"] + python_minor_version: ["8", "9", "10", "11", "12", "13"] tox_env: [ "integration-goethereum-ipc", "integration-goethereum-ipc_async", @@ -257,7 +257,7 @@ workflows: - windows-wheel: matrix: parameters: - python_minor_version: ["10", "11", "12"] + python_minor_version: ["10", "11", "12", "13"] name: "py3<< matrix.python_minor_version >>-windows-wheel" diff --git a/setup.py b/setup.py index beeab7e1a5..8d79b072f2 100644 --- a/setup.py +++ b/setup.py @@ -96,5 +96,6 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], ) diff --git a/tox.ini b/tox.ini index e2d1f2fe90..7eb81d1df3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist= - py{38,39,310,311,312}-{ens,core,lint,wheel} - py{38,39,310,311,312}-integration-{goethereum,ethtester} + py{38,39,310,311,312,313}-{ens,core,lint,wheel} + py{38,39,310,311,312,313}-integration-{goethereum,ethtester} docs benchmark windows-wheel @@ -48,8 +48,9 @@ basepython = py310: python3.10 py311: python3.11 py312: python3.12 + py313: python3.13 -[testenv:py{38,39,310,311,312}-lint] +[testenv:py{38,39,310,311,312,313}-lint] deps=pre-commit extras=dev commands= @@ -64,7 +65,7 @@ commands= python {toxinidir}/web3/tools/benchmark/main.py --num-calls 100 -[testenv:py{38,39,310,311,312}-wheel] +[testenv:py{38,39,310,311,312,313}-wheel] deps= wheel build[virtualenv]