From ae9fc639a82372a4cd75f61243e289f67a24a4cd Mon Sep 17 00:00:00 2001 From: Juan Escudero Date: Wed, 18 Dec 2024 14:58:03 -0500 Subject: [PATCH] Require matplotlib<3.10 for astropy<6 (#161) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2d3ccbb8..1243238d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ requires-python = ">=3.11,<3.13" dependencies = [ "numpy>=1.26.4,<2", - "matplotlib>=3.7.1,<4", + "matplotlib>=3.7.1,<3.10", # See https://github.com/juanep97/iop4/issues/160 "bokeh==3.6.0", # Bokeh version must match the one in iop4api/templates/iop4api/index.html. "scipy>=1.10.1,<2", "astropy>=5.2.2,<6",