Skip to content

Commit a1bbf48

Browse files
authored
Merge pull request #201 from nschloe/doc-update
Doc update
2 parents 348455c + 6527128 commit a1bbf48

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import os
1717

1818
import mock
19-
MOCK_MODULES = ['matplotlib']
19+
MOCK_MODULES = ['matplotlib', 'pipdate']
2020
for mod_name in MOCK_MODULES:
2121
sys.modules[mod_name] = mock.Mock()
2222

matplotlib2tikz/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
__copyright__ = 'Copyright (c) 2010-2017, %s <%s>' % (__author__, __email__)
66
__credits__ = []
77
__license__ = 'License :: OSI Approved :: MIT License'
8-
__version__ = '0.6.12'
8+
__version__ = '0.6.13'
99
__maintainer__ = u'Nico Schlömer'
1010
__status__ = 'Development Status :: 5 - Production/Stable'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# https://packaging.python.org/single_source_version/
88
base_dir = os.path.abspath(os.path.dirname(__file__))
99
about = {}
10-
with open(os.path.join(base_dir, 'matplotlib2tikz', '__about__.py')) as f:
10+
with open(os.path.join(base_dir, 'matplotlib2tikz', '__about__.py'), 'rb') as f:
1111
exec(f.read(), about)
1212

1313

0 commit comments

Comments
 (0)