Skip to content

Commit a9a8e2c

Browse files
committed
add pipdated
1 parent 8d422ff commit a9a8e2c

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

matplotlib2tikz/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@
1515
)
1616

1717
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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def read(fname):
3333
install_requires=[
3434
'matplotlib >=1.4.0',
3535
'numpy',
36-
'Pillow >= 3.0.0'
36+
'Pillow >= 3.0.0',
37+
'pipdated',
3738
],
3839
description='convert matplotlib figures into TikZ/PGFPlots',
3940
long_description=read('README.rst'),

0 commit comments

Comments
 (0)