We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984636c commit 684fd99Copy full SHA for 684fd99
matplotlib2tikz/__init__.py
@@ -17,6 +17,10 @@
17
18
from matplotlib2tikz.save import get_tikz_code, save
19
20
-import pipdated
21
-if pipdated.needs_checking(__name__):
22
- print(pipdated.check(__name__, __version__))
+try:
+ import pipdate
+except ImportError:
23
+ pass
24
+else:
25
+ if pipdate.needs_checking(__name__):
26
+ print(pipdate.check(__name__, __version__))
setup.py
@@ -34,7 +34,7 @@ def read(fname):
34
'matplotlib >=1.4.0',
35
'numpy',
36
'Pillow >= 3.0.0',
37
- 'pipdated',
+ 'pipdate',
38
'six',
39
],
40
description='convert matplotlib figures into TikZ/PGFPlots',
0 commit comments