forked from multi-build/multibuild
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for supported_wheels, with fix
- Loading branch information
1 parent
0623c58
commit 24936a2
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Test supported wheels script | ||
PYTHON_EXE=${PYTHON_EXE:-python} | ||
if [ -z "$PIP_CMD" ]; then | ||
pip_install="pip install --user" | ||
else | ||
pip_install="$PIP_CMD install" | ||
fi | ||
# Current wheel versions not available for older Pythons | ||
lpv=$(lex_ver $PYTHON_VERSION) | ||
if [ $lpv -ge $(lex_ver 3.5) ] || [ $lpv -lt $(lex_ver 3) ]; then | ||
for whl in wheel==0.31.1 wheel==0.32.0 wheel; do | ||
$pip_install -U $whl | ||
$PYTHON_EXE supported_wheels.py tornado-5.1-cp27-cp27m-macosx_10_6_intel.whl tornado-5.1-cp36-cp36m-macosx_10_13_x86_64.whl texext-0.6.1-cp36-none-any.whl | ||
done | ||
fi |