From 1b2c4563f29899497e268c84525dd7f3b0a10c94 Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Tue, 27 Feb 2024 18:23:22 -0800 Subject: [PATCH] Require matplotlib < 3.8 for `pgf.common_texification` As per https://github.com/nschloe/tikzplotlib/issues/559 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f1ee514f..5a8453b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ keywords = ["latex", "tikz", "matplotlib", "graphics"] dynamic = ["version"] requires-python = ">=3.7" dependencies = [ - "matplotlib >= 1.4.0", + "matplotlib >= 1.4.0, < 3.8", "numpy", "Pillow", "webcolors",