From 68022195bc63ee3f2ed3fed26aa6a9727e0cb71f Mon Sep 17 00:00:00 2001 From: Martin Machacek Date: Tue, 17 Aug 2021 12:43:26 -0700 Subject: [PATCH] Fix darwin/arm64/cp39 This should fix issue https://github.com/scipy/oldest-supported-numpy/issues/23 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 8ff502f..d3fa2fd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,7 +37,7 @@ install_requires = # arm64 on Darwin supports Python 3.8 and above requires numpy>=1.20.0 numpy==1.20.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin' - numpy==1.20.0; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin' + numpy==1.21.2; python_version=='3.9' and platform_machine=='arm64' and platform_system=='Darwin' # default numpy requirements numpy==1.13.3; python_version=='3.5' and platform_machine!='aarch64' and platform_system!='AIX'