Skip to content

Commit a45b7be

Browse files
committed
v1.0.1: Fix easy_install.
Fixes #4 Similar to Robpol86/sphinx-disqus@857be Package is actually not zip safe since Sphinx can't access versions.html if it's in a zip file.
1 parent 04063de commit a45b7be

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ Changelog
4242

4343
This project adheres to `Semantic Versioning <http://semver.org/>`_.
4444

45+
1.0.1 - 2016-08-02
46+
------------------
47+
48+
Fixed
49+
* easy_install: https://github.com/Robpol86/sphinxcontrib-versioning/issues/4
50+
4551
1.0.0 - 2016-07-23
4652
------------------
4753

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
INSTALL_REQUIRES = ['colorclass', 'docopt', 'sphinx']
1414
LICENSE = 'MIT'
1515
NAME = 'sphinxcontrib-versioning'
16-
VERSION = '1.0.0'
16+
VERSION = '1.0.1'
1717

1818

1919
def readme(path='README.rst'):
@@ -104,5 +104,5 @@ def run(cls):
104104
packages=['sphinxcontrib', os.path.join('sphinxcontrib', 'versioning')],
105105
url='https://github.com/Robpol86/' + NAME,
106106
version=VERSION,
107-
zip_safe=True,
107+
zip_safe=False,
108108
)

sphinxcontrib/versioning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
__author__ = '@Robpol86'
99
__license__ = 'MIT'
10-
__version__ = '1.0.0'
10+
__version__ = '1.0.1'

0 commit comments

Comments
 (0)