Skip to content

Commit

Permalink
bundler/manylinux: Fix recently broken wheel version parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
anlambert committed Oct 11, 2023
1 parent 7979ad7 commit b649d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundlers/linux/talipot_python_wheels_manylinux_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ yum -y install libffi-devel


JSON=$(curl -s 'https://test.pypi.org/pypi/talipot/json')
LAST_VERSION=$(echo $JSON | python3 -c "
LAST_VERSION=$(echo $JSON | /opt/python/cp311-cp311/bin/python3 -c "
import sys, json
print(json.load(sys.stdin)['info']['version'])" 2>/dev/null)
if [ $? -ne 0 ]
Expand Down

0 comments on commit b649d83

Please sign in to comment.