Skip to content

Commit

Permalink
Allow whl files built for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Jul 8, 2024
1 parent 2987145 commit a152df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ runs:
python -m pip cache list || true
# assert no whl files have been built
if python -m pip cache info && [[ "$(python -m pip cache info | grep "Number of .*wheels:")" != "Number of "*"wheels: 0" ]]
if [[ "$python_minor_version" != "3.13" ]] && python -m pip cache info && [[ "$(python -m pip cache info | grep "Number of .*wheels:")" != "Number of "*"wheels: 0" ]]
then
echo "Dependency whl files have been built"
exit 1
Expand Down

0 comments on commit a152df4

Please sign in to comment.