From 241ee563c5700f77b3a7c2687330ae9befad3874 Mon Sep 17 00:00:00 2001 From: Sondre Sortland Date: Wed, 26 Feb 2020 11:41:16 +0100 Subject: [PATCH] Separate matplotlib requirement in py 2 and 3 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 695933705b5..8133a2838a7 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,8 @@ def package_files(directory): "cwrap", "numpy", "pandas", - "matplotlib<3", + "matplotlib < 3; python_version < '3.0'", + "matplotlib; python_version >= '3.0'", "scipy", "pytest", "decorator",