Commit 35082b3b authored by Matthew Brett's avatar Matthew Brett
Browse files

More cleanups from bugs revealed by astropy

parent 3319dc8d
...@@ -45,13 +45,13 @@ function build_plat_wheels { ...@@ -45,13 +45,13 @@ function build_plat_wheels {
docker pull $docker_image docker pull $docker_image
if [ "$plat" == "i686" ]; then local intro_cmd=linux32; fi if [ "$plat" == "i686" ]; then local intro_cmd=linux32; fi
docker run --rm \ docker run --rm \
-e UTIL_DIR=$UTIL_DIR \ -e UTIL_DIR="$UTIL_DIR" \
-e PYTHON_VERSION=$TRAVIS_PYTHON_VERSION \ -e PYTHON_VERSION="$TRAVIS_PYTHON_VERSION" \
-e UNICODE_WIDTHS=$UNICODE_WIDTHS \ -e UNICODE_WIDTHS="$UNICODE_WIDTHS" \
-e BUILD_DEPENDS=$BUILD_DEPENDS \ -e BUILD_DEPENDS="$BUILD_DEPENDS" \
-e BUILD_COMMIT=$BUILD_COMMIT \ -e BUILD_COMMIT="$BUILD_COMMIT" \
-e BUILD_PRE_SCRIPT=$BUILD_PRE_SCRIPT \ -e BUILD_PRE_SCRIPT="$BUILD_PRE_SCRIPT" \
-e REPO_DIR=$REPO_DIR \ -e REPO_DIR="$REPO_DIR" \
-v $PWD:/io \ -v $PWD:/io \
$docker_image $intro_cmd $BUILD_SCRIPT $docker_image $intro_cmd $BUILD_SCRIPT
} }
...@@ -27,7 +27,7 @@ function build_wheels { ...@@ -27,7 +27,7 @@ function build_wheels {
git fetch origin git fetch origin
git checkout $BUILD_COMMIT git checkout $BUILD_COMMIT
git clean -fxd git clean -fxd
if [-n "$BUILD_DEPENDS" ]; then pip install $BUILD_DEPENDS; fi if [ -n "$BUILD_DEPENDS" ]; then pip install $BUILD_DEPENDS; fi
pip wheel -w $WHEELHOUSE --no-deps . pip wheel -w $WHEELHOUSE --no-deps .
cd .. cd ..
pip install delocate pip install delocate
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment