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 24, 2024
1 parent 9fff25b commit 9a0e71f
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 9a0e71f

Please sign in to comment.