Skip to content

Commit c0fe310

Browse files
committed
Do not install dependencies when building wheel
The build script pulls dependent wheels into the build area. These are not needed for the build and should be avoided.
1 parent 496c27e commit c0fe310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

travis/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ yum install -y atlas-devel
77
# Compile wheels
88
for PYBIN in /opt/python/*/bin; do
99
"${PYBIN}/pip" install -r /io/dev-requirements.txt
10-
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
10+
"${PYBIN}/pip" wheel /io/ --no-deps -w wheelhouse/
1111
done
1212

1313
# Bundle external shared libraries into the wheels

0 commit comments

Comments
 (0)