summaryrefslogtreecommitdiff
path: root/common/pkg/generate_wheels.sh
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2016-07-07 11:56:33 +0200
committerKali Kaneko <kali@leap.se>2016-07-12 03:09:30 +0200
commit297ecdb24b238eff7e7674c7ab2df1f116007d7e (patch)
tree6e5d10b5d2c7e12416a2582228528f3999a4ef16 /common/pkg/generate_wheels.sh
parent41f65e3357011dbb7f510a6e87c6693bcc1d4edf (diff)
[pkg] remove unneeded dirspec exceptions
Diffstat (limited to 'common/pkg/generate_wheels.sh')
-rwxr-xr-xcommon/pkg/generate_wheels.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/pkg/generate_wheels.sh b/common/pkg/generate_wheels.sh
index 496f8e01..a13e2c7a 100755
--- a/common/pkg/generate_wheels.sh
+++ b/common/pkg/generate_wheels.sh
@@ -7,7 +7,7 @@ if [ "$WHEELHOUSE" = "" ]; then
fi
pip wheel --wheel-dir $WHEELHOUSE pip
-pip wheel --wheel-dir $WHEELHOUSE --allow-external dirspec --allow-unverified dirspec -r pkg/requirements.pip
+pip wheel --wheel-dir $WHEELHOUSE -r pkg/requirements.pip
if [ -f pkg/requirements-testing.pip ]; then
pip wheel --wheel-dir $WHEELHOUSE -r pkg/requirements-testing.pip
fi