From 7678a755b3d059f108c6377b4ee2b551bf14ab4c Mon Sep 17 00:00:00 2001 From: Oscar Esteban Date: Sun, 6 Dec 2020 09:51:25 +0100 Subject: [PATCH 1/2] maint: numpy 1.20 drops 3.6 support --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 450026d80..7e9de11dc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,6 +23,7 @@ classifiers = python_requires = >=3.5 install_requires = numpy + numpy <1.20; python_version < 3.7 scipy nibabel >=2.1 pandas >=0.23 From 4b692a80db8dfea32d3e146856a2674c03660445 Mon Sep 17 00:00:00 2001 From: Oscar Esteban Date: Sun, 6 Dec 2020 09:54:40 +0100 Subject: [PATCH 2/2] fix: quotes are not optional here --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 7e9de11dc..6f1a19b55 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,7 @@ classifiers = python_requires = >=3.5 install_requires = numpy - numpy <1.20; python_version < 3.7 + numpy <1.20; python_version < "3.7" scipy nibabel >=2.1 pandas >=0.23