tikzplotlib icon indicating copy to clipboard operation
tikzplotlib copied to clipboard

`matplotlib 3.6` deprecates `pgf.common_texification`

Open Sbozzolo opened this issue 3 years ago • 6 comments
trafficstars

tikzplotlib with matplotlib >= 3.6 emits a deprecation warning:

tikzplotlib/_axes.py:12: MatplotlibDeprecationWarning: The common_texification function was deprecated in Matplotlib 3.6 and will be removed two minor releases later.

Sbozzolo avatar Oct 11 '22 00:10 Sbozzolo

Hi, This issue becomes critical because common_texification has been suppressed from matplotlib 3.8. Hence sadly, packages that use tikzplotlib now fail their tests because even just importing tikzplotlib leads to an error, unless if we specify that matplotlib should be <=3.7. :'-( Thanks for the awesome job on tikzplotlib, by the way!

francois-durand avatar Sep 21 '23 10:09 francois-durand

common_texification basically has been a public wrapper around the private _tex_escape method during the deprecation phase (see https://github.com/matplotlib/matplotlib/commit/336028f4d521a23d9ea2de88b1faf82eddfa5b52#diff-3ceb75d68efae3eba151a1bb856b1ea8467d64abcb0dc725ed3fa2e441e16fcaR96-R126 and https://github.com/matplotlib/matplotlib/blob/a302267d7f0ec4ab05973b984f7b56db21bf524c/lib/matplotlib/backends/backend_pgf.py#L100-L125). I do not know how https://github.com/matplotlib/matplotlib/commit/1936c948476b7d58d10f2c50003a0b9c38f30477 influences tikzplotlib as well.

While there is no solution (which I do not expect in the near future, but evaluating a possible PR should always be possible to support others which face a similar issue), you might want to try monkey-patching the corresponding method with either the old or the new implementation.

FriedrichFroebel avatar Sep 21 '23 15:09 FriedrichFroebel

Thanks for the answer! For the moment, I just configure my CI to run with matplotlib 3.7 and it works fine.

francois-durand avatar Sep 22 '23 08:09 francois-durand

Is there any plan to address this?

Sbozzolo avatar Oct 26 '23 19:10 Sbozzolo

See my previous comment: You might submit a corresponding PR or decide to monkey-patch this for now. Please note that development is more or less stalled at the moment unfortunately, although there have been some notes about possible changes in the future.

FriedrichFroebel avatar Nov 01 '23 19:11 FriedrichFroebel