From 38ef7f1d7595f4d4edfe77aa165dbd2f05518655 Mon Sep 17 00:00:00 2001 From: Brian Gow Date: Mon, 21 Jun 2021 15:10:33 -0400 Subject: [PATCH 1/2] This updates the Matplotlib version to avoid segmentation faults on Macs running Big Sur. Fixes #309 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c1381f71..ebbf7a46 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ cycler==0.10.0 idna==2.9 joblib==0.14.1 kiwisolver==1.2.0 -matplotlib==3.2.1 +matplotlib==3.3.4 nose==1.3.7 numpy==1.18.5 pandas==1.0.3 From 22838df1ae1665486a7600b4c0ef67f8014e6a46 Mon Sep 17 00:00:00 2001 From: Brian Gow Date: Tue, 22 Jun 2021 06:21:01 -0400 Subject: [PATCH 2/2] Update Matplotlib version for pip install --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c4ed1a4..c3fc44e6 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ 'idna>=2.2', 'joblib>=0.11', 'kiwisolver>=1.1.0', - 'matplotlib>=2.0.0', + 'matplotlib>=3.3.4', 'numpy>=1.10.1', 'pandas>=0.17.0', 'pyparsing>=2.0.4',