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 8d422ff commit a9a8e2cCopy full SHA for a9a8e2c
matplotlib2tikz/__init__.py
@@ -15,3 +15,9 @@
15
)
16
17
from matplotlib2tikz.save import save
18
+
19
+import pipdated
20
+if pipdated.needs_checking('matplotlib2tikz'):
21
+ msg = pipdated.check('matplotlib2tikz', __version__)
22
+ if msg:
23
+ print(msg)
setup.py
@@ -33,7 +33,8 @@ def read(fname):
33
install_requires=[
34
'matplotlib >=1.4.0',
35
'numpy',
36
- 'Pillow >= 3.0.0'
+ 'Pillow >= 3.0.0',
37
+ 'pipdated',
38
],
39
description='convert matplotlib figures into TikZ/PGFPlots',
40
long_description=read('README.rst'),
0 commit comments