hashdist / hashstack

Collection of software profiles for HashDist
https://hashdist.github.io/
51 stars 60 forks source link

Better workaround for Fabric #898

Closed certik closed 8 years ago

certik commented 8 years ago

The problem is that the default install creates the following directory structure in lib/python2.7/site-packages:

fabfile fabric Fabric-1.10.2-py2.7.egg-info tests

The previous workaround created this structure:

Fabric-1.10.2-py2.7.egg site.py site.pyc

Which causes the 'fabric' module not to be found in Hashdist. The new workaround creates the following structure:

fabfile fabric Fabric-1.10.2-py2.7.egg-info

Now everything works as expected.

jcftang commented 8 years ago

+1

certik commented 8 years ago

Thanks. The failure seems unrelated.