Skip to content

Commit

Permalink
Fix easy_install incompatibility.
Browse files Browse the repository at this point in the history
Setting zip_safe to False so easy_install extracts the egg file.
Otherwise Sphinx can't access static resources.

Fixes https://bitbucket.org/birkenfeld/sphinx-contrib/issues/155/
  • Loading branch information
Robpol86 committed Aug 2, 2016
1 parent d386c74 commit 857be87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ Unreleased
Added
* Python 3.5 support (Linux/OS X and Windows).

Fixed
* easy_install: https://bitbucket.org/birkenfeld/sphinx-contrib/issues/155/

1.0.0 - 2015-07-31
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,5 +105,5 @@ def run(cls):
packages=['sphinxcontrib'],
url='https://github.com/Robpol86/' + NAME,
version=VERSION,
zip_safe=True,
zip_safe=False,
)

0 comments on commit 857be87

Please sign in to comment.