From eb718e218e712453e012e19cb41971b68824ec10 Mon Sep 17 00:00:00 2001 From: Heberto Mayorquin Date: Thu, 16 May 2024 13:37:29 -0600 Subject: [PATCH 1/2] pin matplotlib dependency --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cb71bb499b..d00acb4a4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,7 +95,7 @@ full = [ "scikit-learn", "networkx", "distinctipy", - "matplotlib", + "matplotlib<3.9.", # See https://github.com/SpikeInterface/spikeinterface/issues/2863 "cuda-python; platform_system != 'Darwin'", "numba", ] From 0942fda7ce60c644a397c8d86c091eba6f07706d Mon Sep 17 00:00:00 2001 From: Heberto Mayorquin Date: Thu, 16 May 2024 13:41:46 -0600 Subject: [PATCH 2/2] limit matplotlib dependency --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d00acb4a4c..d502d83020 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,7 +95,7 @@ full = [ "scikit-learn", "networkx", "distinctipy", - "matplotlib<3.9.", # See https://github.com/SpikeInterface/spikeinterface/issues/2863 + "matplotlib<3.9", # See https://github.com/SpikeInterface/spikeinterface/issues/2863 "cuda-python; platform_system != 'Darwin'", "numba", ]