--- 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))