Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions manywheel/build_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@ python setup.py clean
retry pip install -qr requirements.txt
case ${DESIRED_PYTHON} in
cp38*)
retry pip install -q numpy==1.15
retry pip install numpy==1.15
;;
cp31*)
retry pip install -q --pre numpy==2.0.2
retry pip install --pre numpy==2.0.2
;;
# Should catch 3.9+
*)
retry pip install -q --pre numpy==2.0.2
retry pip install --pre numpy==2.0.2
;;
esac

Expand Down
Loading