Skip to content

Commit 85e2e0c

Browse files
committed
Update python version in build workflow
1 parent 3b314f9 commit 85e2e0c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build_workflow.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ on:
1414
env:
1515
CANCEL_OTHERS: false
1616
PATHS_IGNORE: '["**/README.md", "**/docs/**"]'
17+
# Static python version for setting up pre-commit linting
18+
PYTHON_VERSION: "3.13"
1719

1820
jobs:
1921
pre-commit-hooks:
@@ -32,10 +34,10 @@ jobs:
3234
uses: actions/checkout@v4
3335

3436
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
35-
name: Set up Python 3.10
37+
name: Set up Python ${{ env.PYTHON_VERSION }}
3638
uses: actions/setup-python@v5
3739
with:
38-
python-version: "3.10"
40+
python-version: ${{ env.PYTHON_VERSION }}
3941

4042
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
4143
id: file_changes

0 commit comments

Comments
 (0)