Skip to content

Commit

Permalink
Changed zip_safe to False in setup.py
Browse files Browse the repository at this point in the history
Apparently eggs and (new style) namespace packages don't mix. This change solves that problem.
  • Loading branch information
agronholm committed Aug 31, 2015
1 parent e47fca7 commit 3280ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'Programming Language :: Python :: 3.5'
],
license='Apache License 2.0',
zip_safe=True,
zip_safe=False,
packages=[
'asphalt.core'
],
Expand Down

0 comments on commit 3280ffa

Please sign in to comment.