Skip to content

Commit

Permalink
Update how to select cp313
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebusm committed Dec 20, 2024
1 parent e850880 commit 5ad1153
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,13 @@ jobs:

- name: Select Python (Linux)
if: matrix.os == 'linux'
run: echo /opt/python/${{env.python_impl_name}}*/bin >> $GITHUB_PATH
run: |
#there are cp313 and cp313t
if [[ "${{env.python_impl_name}}" == "cp313" ]]; then
echo /opt/python/cp313-cp313/bin >> $GITHUB_PATH;
else
echo /opt/python/${{env.python_impl_name}}*/bin >> $GITHUB_PATH;
fi
- name: Select Python (Windows)
if: matrix.os == 'windows'
Expand Down

0 comments on commit 5ad1153

Please sign in to comment.