Skip to content

Commit b1a99f2

Browse files
committed
Reuse official setup python action
1 parent 9aa9406 commit b1a99f2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/python_wheel_build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,14 @@ jobs:
3030
with:
3131
ref: ${{ inputs.branch }}
3232

33+
- name: Setup Python
34+
uses: actions/setup-python@v5
35+
with:
36+
python-version: 3.13
37+
3338
- name: Set up Python Virtual Environment
3439
run: |
35-
python3 -m venv /py-venv/cibuildwheel-env
40+
python -m venv /py-venv/cibuildwheel-env
3641
. /py-venv/cibuildwheel-env/bin/activate
3742
echo PATH=$PATH >> $GITHUB_ENV
3843

0 commit comments

Comments
 (0)