Skip to content

Commit 3053057

Browse files
committed
Bump python 3.13 in GHA
1 parent 4b38e26 commit 3053057

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

repo_helper/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,9 +471,9 @@ def set_gh_actions_versions(py_versions: Iterable[str]) -> List[str]:
471471
if "3.12-dev" in py_versions:
472472
py_versions[py_versions.index("3.12-dev")] = "3.12"
473473
if "3.13-dev" in py_versions:
474-
py_versions[py_versions.index("3.13-dev")] = "3.13.0-alpha.2"
474+
py_versions[py_versions.index("3.13-dev")] = "3.13.0-alpha.3"
475475
if "3.13" in py_versions:
476-
py_versions[py_versions.index("3.13")] = "3.13.0-alpha.2"
476+
py_versions[py_versions.index("3.13")] = "3.13.0-alpha.3"
477477
if "pypy3" in py_versions:
478478
py_versions[py_versions.index("pypy3")] = "pypy-3.6"
479479
if "pypy36" in py_versions:

tests/test_files/test_ci_cd_/test_make_github_linux_case_4.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.13.0-alpha.2'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11,3.13.0-alpha.3'
2727

2828
strategy:
2929
fail-fast: False
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310-dev,build", experimental: False}
3737
- {python-version: "3.11", testenvs: "py311-dev,build", experimental: False}
38-
- {python-version: "3.13.0-alpha.2", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13.0-alpha.3", testenvs: "py313-dev,build", experimental: True}
3939

4040
steps:
4141
- name: Checkout 🛎️

0 commit comments

Comments
 (0)