Skip to content

Commit

Permalink
- improve ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Sep 16, 2024
1 parent 740256b commit 71673ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/c-code/manylinux-install.sh.j2
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ tox_env_map() {
# Compile wheels
for PYBIN in /opt/python/*/bin; do
if \
{% if with_future_python %}
[[ "${PYBIN}" == *"cp%(future_python_shortversion)s/"* ]] || \
{% endif %}
[[ "${PYBIN}" == *"cp311/"* ]] || \
[[ "${PYBIN}" == *"cp312/"* ]] || \
[[ "${PYBIN}" == *"cp313/"* ]] || \
{% if with_future_python %}
[[ "${PYBIN}" == *"cp%(future_python_shortversion)s/"* ]] || \
{% endif %}
[[ "${PYBIN}" == *"cp38/"* ]] || \
[[ "${PYBIN}" == *"cp39/"* ]] || \
[[ "${PYBIN}" == *"cp310/"* ]] ; then
Expand Down

0 comments on commit 71673ed

Please sign in to comment.