# HG changeset patch # User ymh # Date 1579271888 -3600 # Node ID 40a2d27364b2192748b4381eb1b8f6339c98e31c # Parent e7883ce16f12736bbef067fecebba8305fa7f794 remove use of wheel to install build diff -r e7883ce16f12 -r 40a2d27364b2 .hgignore --- 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 diff -r e7883ce16f12 -r 40a2d27364b2 src/fablib/core.py --- 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))