dev-python/matplotlib2tikz: New package

matplotlib2tikz is a Python tool for converting matplotlib figures
into PGFPlots (TikZ) figures like for native inclusion into LaTeX
documents. The output of matplotlib2tikz is in PGFPlots, a LaTeX
library that sits on top of TikZ and describes graphs in terms of
axes, data etc. Consequently, the output of matplotlib2tikz retains
more information, can be more easily understood, and is more easily
editable than raw TikZ output.

Bug: https://bugs.gentoo.org/612052

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4161
This commit is contained in:
Marius Brehler
2017-03-08 14:02:45 +01:00
committed by David Seifert
parent 641193e258
commit 9bfccc1116
4 changed files with 58 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
Remove version checks using pipdated.
Patch by Marius Brehler <marbre@linux.sungazer.de>
--- a/matplotlib2tikz/__init__.py
+++ b/matplotlib2tikz/__init__.py
@@ -15,9 +15,3 @@ from matplotlib2tikz.__about__ import (
)
from matplotlib2tikz.save import save
-
-import pipdated
-if pipdated.needs_checking('matplotlib2tikz'):
- msg = pipdated.check('matplotlib2tikz', __version__)
- if msg:
- print(msg)