From 0bc97e893edd2ab6b8dc7d76635a079ae7f91516 Mon Sep 17 00:00:00 2001 From: paul fisher Date: Mon, 13 Feb 2023 20:29:26 -0500 Subject: [PATCH] Exclude matplotlib 3.7 due to incompatible scanpy. (#929) matplotlib just released v3.7, and unfortunately it introduced an incompatibility with scanpy: https://github.com/scverse/scanpy/issues/2411 Excluding v3.7 works around this issue. This workaround can be removed once scanpy itself excludes v3.7, or if scanpy fixes the root cause. --- apis/python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apis/python/setup.py b/apis/python/setup.py index 7712cf7dd7..3ddec4ee22 100644 --- a/apis/python/setup.py +++ b/apis/python/setup.py @@ -177,6 +177,7 @@ def run(self): install_requires=[ "anndata", "attrs>=22.1", + "matplotlib<3.7", # https://github.com/scverse/scanpy/issues/2411 "numpy", "pandas", "pyarrow >= 9.0.0",