Skip to content

Commit 857be87

Browse files
committed
Fix easy_install incompatibility.
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/
1 parent d386c74 commit 857be87

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ Unreleased
4747
Added
4848
* Python 3.5 support (Linux/OS X and Windows).
4949

50+
Fixed
51+
* easy_install: https://bitbucket.org/birkenfeld/sphinx-contrib/issues/155/
52+
5053
1.0.0 - 2015-07-31
5154
------------------
5255

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,5 +105,5 @@ def run(cls):
105105
packages=['sphinxcontrib'],
106106
url='https://github.com/Robpol86/' + NAME,
107107
version=VERSION,
108-
zip_safe=True,
108+
zip_safe=False,
109109
)

0 commit comments

Comments
 (0)