Skip to content

Commit f84bb25

Browse files
authored
build: use python 3.13 for lint session (#13774)
This fixes an issue seen in #13772 where the `lint` presubmit fails with `nox > Session lint failed: Python interpreter 3.13 not found.`
1 parent 82c9bab commit f84bb25

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: "3.10"
28+
python-version: "3.13"
2929
- name: Install nox
3030
run: |
3131
python -m pip install --upgrade setuptools pip wheel
@@ -34,13 +34,11 @@ jobs:
3434
env:
3535
BUILD_TYPE: presubmit
3636
TEST_TYPE: lint
37-
PY_VERSION: "3.10"
3837
run: |
3938
ci/run_conditional_tests.sh
4039
- name: Run lint_setup_py
4140
env:
4241
BUILD_TYPE: presubmit
4342
TEST_TYPE: lint_setup_py
44-
PY_VERSION: "3.10"
4543
run: |
4644
ci/run_conditional_tests.sh

0 commit comments

Comments
 (0)