We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a0ab2 commit 8e39e31Copy full SHA for 8e39e31
.travis.yml
@@ -47,13 +47,21 @@ matrix:
47
install:
48
- set -e
49
- pip3 install -r requirements.txt -r requirements-dev.txt
50
-- pip3 install auditwheel
+- if [[ "${BUILD_TARGET}" = "linux" ]]; then
51
+ pip3 install auditwheel;
52
+ fi
53
+- if [[ "${BUILD_TARGET}" = "macos" ]]; then
54
+ pip3 install delocate;
55
56
script:
57
58
- $PYTHON_BIN setup.py bdist_wheel
59
- if [[ "${BUILD_TARGET}" = "linux" ]]; then
60
auditwheel repair dist/*.whl;
61
fi
62
63
+ delocate-wheel -w wheelhouse -v dist/*.whl;
64
65
- if [[ "${BUILD_TARGET}" = "windows" ]]; then
66
mkdir wheelhouse;
67
ls dist/*any.whl | sed -e 'p;s/any/win32/' | xargs -n2 cp;
0 commit comments