diff --git a/.github/workflows/python_ci.yml b/.github/workflows/python_ci.yml index 757c3e28..daf513bc 100644 --- a/.github/workflows/python_ci.yml +++ b/.github/workflows/python_ci.yml @@ -22,7 +22,7 @@ jobs: runs-on: "windows-2019" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1,pypy-3.6,pypy-3.7,pypy-3.8' + USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.6,pypy-3.7,pypy-3.8' strategy: fail-fast: False @@ -35,7 +35,7 @@ jobs: - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - - {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True} + - {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True} - {python-version: "pypy-3.6", testenvs: "pypy36", experimental: False} - {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False} diff --git a/.github/workflows/python_ci_linux.yml b/.github/workflows/python_ci_linux.yml index 3c031bc4..dacf470f 100644 --- a/.github/workflows/python_ci_linux.yml +++ b/.github/workflows/python_ci_linux.yml @@ -23,7 +23,7 @@ jobs: runs-on: "ubuntu-20.04" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1,pypy-3.6,pypy-3.7,pypy-3.8' + USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.6,pypy-3.7,pypy-3.8' strategy: fail-fast: False @@ -36,7 +36,7 @@ jobs: - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - - {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True} + - {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True} - {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False} - {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False} diff --git a/.github/workflows/python_ci_macos.yml b/.github/workflows/python_ci_macos.yml index b0798da4..34ea6c97 100644 --- a/.github/workflows/python_ci_macos.yml +++ b/.github/workflows/python_ci_macos.yml @@ -22,7 +22,7 @@ jobs: runs-on: "macos-latest" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.1,pypy-3.7,pypy-3.8' + USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.12,3.13.0-alpha.2,pypy-3.7,pypy-3.8' strategy: fail-fast: False @@ -35,7 +35,7 @@ jobs: - {python-version: "3.10", testenvs: "py310,build", experimental: False} - {python-version: "3.11", testenvs: "py311,build", experimental: False} - {python-version: "3.12", testenvs: "py312,build", experimental: False} - - {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True} + - {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True} - {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False} - {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False} diff --git a/repo_helper/utils.py b/repo_helper/utils.py index 78f1c4d8..3ce14e13 100644 --- a/repo_helper/utils.py +++ b/repo_helper/utils.py @@ -471,9 +471,9 @@ def set_gh_actions_versions(py_versions: Iterable[str]) -> List[str]: if "3.12-dev" in py_versions: py_versions[py_versions.index("3.12-dev")] = "3.12" if "3.13-dev" in py_versions: - py_versions[py_versions.index("3.13-dev")] = "3.13.0-alpha.1" + py_versions[py_versions.index("3.13-dev")] = "3.13.0-alpha.2" if "3.13" in py_versions: - py_versions[py_versions.index("3.13")] = "3.13.0-alpha.1" + py_versions[py_versions.index("3.13")] = "3.13.0-alpha.2" if "pypy3" in py_versions: py_versions[py_versions.index("pypy3")] = "pypy-3.6" if "pypy36" in py_versions: diff --git a/tests/test_files/test_ci_cd_/test_make_github_linux_case_4.yml b/tests/test_files/test_ci_cd_/test_make_github_linux_case_4.yml index b70bd6cc..79dc86b7 100644 --- a/tests/test_files/test_ci_cd_/test_make_github_linux_case_4.yml +++ b/tests/test_files/test_ci_cd_/test_make_github_linux_case_4.yml @@ -23,7 +23,7 @@ jobs: runs-on: "ubuntu-20.04" continue-on-error: ${{ matrix.config.experimental }} env: - USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.13.0-alpha.1' + USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.13.0-alpha.2' strategy: fail-fast: False @@ -35,7 +35,7 @@ jobs: - {python-version: "3.9", testenvs: "py39,build", experimental: False} - {python-version: "3.10", testenvs: "py310-dev,build", experimental: False} - {python-version: "3.11", testenvs: "py311-dev,build", experimental: False} - - {python-version: "3.13.0-alpha.1", testenvs: "py313-dev,build", experimental: True} + - {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True} steps: - name: Checkout 🛎️