From b5ef1e83630eed2e2bcd024ae61b3408367f53dd Mon Sep 17 00:00:00 2001 From: "repo-helper[bot]" <74742576+repo-helper[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 14:00:18 +0000 Subject: [PATCH] Updated files with 'repo_helper'. --- .github/workflows/python_ci.yml | 2 +- .github/workflows/python_ci_linux.yml | 2 +- .github/workflows/python_ci_macos.yml | 2 +- pyproject.toml | 2 +- tox.ini | 13 +++++++++---- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml index f092239..65b29d9 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/python_ci.yml @@ -34,7 +34,7 @@ jobs: - {python-version: "3.10", testenvs: "py310-flake8{4,5,6,7},build", experimental: False} - {python-version: "3.11", testenvs: "py311-flake8{4,5,6,7},build", experimental: False} - {python-version: "3.12", testenvs: "py312-flake8{5,6,7},build", experimental: False} - - {python-version: "3.13", testenvs: "py313-dev-flake8{5,6,7},build", experimental: True} + - {python-version: "3.13", testenvs: "py313-flake8{5,6,7},build", experimental: False} - {python-version: "pypy-3.7", testenvs: "pypy37-flake8{4,5},build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38-flake8{4,5,6,7},build", experimental: False} - {python-version: "pypy-3.9-v7.3.15", testenvs: "pypy39-flake8{4,5,6,7},build", experimental: True} diff --git a/.github/workflows/python_ci_linux.yml b/.github/workflows/python_ci_linux.yml index 32c826c..4280be4 100644 --- a/.github/workflows/python_ci_linux.yml +++ b/.github/workflows/python_ci_linux.yml @@ -35,7 +35,7 @@ jobs: - {python-version: "3.10", testenvs: "py310-flake8{4,5,6,7},build", experimental: False} - {python-version: "3.11", testenvs: "py311-flake8{4,5,6,7},build", experimental: False} - {python-version: "3.12", testenvs: "py312-flake8{5,6,7},build", experimental: False} - - {python-version: "3.13", testenvs: "py313-dev-flake8{5,6,7},build", experimental: True} + - {python-version: "3.13", testenvs: "py313-flake8{5,6,7},build", experimental: False} - {python-version: "pypy-3.7", testenvs: "pypy37-flake8{4,5},build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38-flake8{4,5,6,7},build", experimental: False} - {python-version: "pypy-3.9", testenvs: "pypy39-flake8{4,5,6,7},build", experimental: True} diff --git a/.github/workflows/python_ci_macos.yml b/.github/workflows/python_ci_macos.yml index 7cda7bd..6cd655b 100644 --- a/.github/workflows/python_ci_macos.yml +++ b/.github/workflows/python_ci_macos.yml @@ -34,7 +34,7 @@ jobs: - {python-version: "3.10", os-ver: "14", testenvs: "py310-flake8{4,5,6,7},build", experimental: False} - {python-version: "3.11", os-ver: "14", testenvs: "py311-flake8{4,5,6,7},build", experimental: False} - {python-version: "3.12", os-ver: "14", testenvs: "py312-flake8{5,6,7},build", experimental: False} - - {python-version: "3.13", os-ver: "14", testenvs: "py313-dev-flake8{5,6,7},build", experimental: True} + - {python-version: "3.13", os-ver: "14", testenvs: "py313-flake8{5,6,7},build", experimental: False} - {python-version: "pypy-3.7", os-ver: "13", testenvs: "pypy37-flake8{4,5},build", experimental: False} - {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38-flake8{4,5,6,7},build", experimental: False} - {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39-flake8{4,5,6,7},build", experimental: True} diff --git a/pyproject.toml b/pyproject.toml index 809adf7..d5b78fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ base-classifiers = [ "Topic :: Utilities", "Typing :: Typed", ] -python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",] +python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",] python-implementations = [ "CPython", "PyPy",] platforms = [ "Windows", "macOS", "Linux",] license-key = "MIT" diff --git a/tox.ini b/tox.ini index a40e109..1a9d71f 100644 --- a/tox.ini +++ b/tox.ini @@ -29,7 +29,7 @@ envlist = py310-flake8{4,5,6,7} py311-flake8{4,5,6,7} py312-flake8{5,6,7} - py313-dev-flake8{5,6,7} + py313-flake8{5,6,7} pypy37-flake8{4,5} pypy38-flake8{4,5,6,7} pypy39-flake8{4,5,6,7} @@ -51,7 +51,7 @@ test = py310-flake8{4,5,6,7} py311-flake8{4,5,6,7} py312-flake8{5,6,7} - py313-dev-flake8{5,6,7} + py313-flake8{5,6,7} pypy37-flake8{4,5} pypy38-flake8{4,5,6,7} pypy39-flake8{4,5,6,7} @@ -78,12 +78,11 @@ setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 -[testenv:py313-dev] +[testenv:py313] download = True setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 - UNSAFE_PYO3_SKIP_VERSION_CHECK=1 [testenv:py312] download = True @@ -250,6 +249,12 @@ setenv = PYTHONDEVMODE=1 PIP_DISABLE_PIP_VERSION_CHECK=1 +[testenv:py313-flake8{4,5,6,7}] +download = True +setenv = + PYTHONDEVMODE=1 + PIP_DISABLE_PIP_VERSION_CHECK=1 + [testenv:py313-dev-flake8{4,5,6,7}] download = True setenv =