Skip to content

Commit 3f74157

Browse files
committed
[CI] Use Python 3.13
1 parent e4b34e1 commit 3f74157

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/check_scripts.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.12'
17+
python-version: '3.13'
1818
- uses: actions/checkout@v4
1919
- run: pip install -r requirements.txt
2020
- run: |
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- uses: actions/setup-python@v5
2929
with:
30-
python-version: '3.12'
30+
python-version: '3.13'
3131
- uses: actions/checkout@v4
3232
- run: pip install -r requirements.txt
3333
- run: mypy --strict -p stub_uploader -p tests
@@ -39,7 +39,8 @@ jobs:
3939
- name: Setup Python
4040
uses: actions/setup-python@v5
4141
with:
42-
python-version: '3.12'
42+
# Keep in sync with typeshed's daily.yml and tests.yml workflows.
43+
python-version: '3.13'
4344
- name: Checkout main
4445
uses: actions/checkout@v4
4546
with:

.github/workflows/force_update.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.12'
20+
python-version: '3.13'
2121
- name: Checkout main
2222
uses: actions/checkout@v4
2323
with:

.github/workflows/test_api_token.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
with:
24-
python-version: '3.12'
24+
python-version: '3.13'
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip

.github/workflows/update_stubs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Python
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: '3.12'
21+
python-version: '3.13'
2222
- name: Checkout main
2323
uses: actions/checkout@v4
2424
with:

0 commit comments

Comments
 (0)