remove use of wheel to install build 0.1_maintenance tip
authorymh <ymh.work@gmail.com>
Fri, 17 Jan 2020 15:38:08 +0100
branch0.1_maintenance
changeset 33 40a2d27364b2
parent 30 e7883ce16f12
remove use of wheel to install build
.hgignore
src/fablib/core.py
--- a/.hgignore	Mon Sep 12 17:53:30 2016 +0200
+++ b/.hgignore	Fri Jan 17 15:38:08 2020 +0100
@@ -6,4 +6,5 @@
 syntax: regexp
 ^src/MANIFEST$
 syntax: regexp
-^src/dist$
\ No newline at end of file
+^src/dist$
+^src/fablib.egg-info
\ No newline at end of file
--- a/src/fablib/core.py	Mon Sep 12 17:53:30 2016 +0200
+++ b/src/fablib/core.py	Fri Jan 17 15:38:08 2020 +0100
@@ -213,7 +213,7 @@
         if module_to_uninstall:
             with settings(warn_only=True):
                 run("pip uninstall -y %s" % module_to_uninstall)
-        run("pip install --no-cache-dir \"%s\"" % remotepath)
+        run("pip install --no-binary=:all: --no-cache-dir \"%s\"" % remotepath)
 
 def collectstatic(remotepath, remotevirtualenvpath, platform_web_module, module_settings="", admin_cmd="python manage.py"):
     print("Collect static in %s with %s" % (remotepath, remotevirtualenvpath))