File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 5
5
__copyright__ = 'Copyright (c) 2010-2017, %s <%s>' % (__author__ , __email__ )
6
6
__credits__ = []
7
7
__license__ = 'License :: OSI Approved :: MIT License'
8
- __version__ = '0.6.11 '
8
+ __version__ = '0.6.12 '
9
9
__maintainer__ = u'Nico Schlömer'
10
10
__status__ = 'Development Status :: 5 - Production/Stable'
Original file line number Diff line number Diff line change 17
17
18
18
from matplotlib2tikz .save import get_tikz_code , save
19
19
20
- import pipdated
21
- if pipdated .needs_checking (__name__ ):
22
- print (pipdated .check (__name__ , __version__ ))
20
+ try :
21
+ import pipdate
22
+ except ImportError :
23
+ pass
24
+ else :
25
+ if pipdate .needs_checking (__name__ ):
26
+ print (pipdate .check (__name__ , __version__ ))
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def read(fname):
34
34
'matplotlib >=1.4.0' ,
35
35
'numpy' ,
36
36
'Pillow >= 3.0.0' ,
37
- 'pipdated ' ,
37
+ 'pipdate ' ,
38
38
'six' ,
39
39
],
40
40
description = 'convert matplotlib figures into TikZ/PGFPlots' ,
You can’t perform that action at this time.
0 commit comments