From 93e52be2b493c7ccd3a264222b47b6cc2a7f62b6 Mon Sep 17 00:00:00 2001 From: Vincent Sarago Date: Thu, 21 Dec 2023 17:00:21 +0100 Subject: [PATCH] update to 1.19.3 for python3.8 in aarch64 to limit cython<3.0 (#83) --- setup.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index d12e284..31d35df 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,9 +27,9 @@ install_requires = numpy==1.23.3; python_version=='3.9' and platform_system=='OS400' and platform_machine!='loongarch64' and platform_python_implementation!='PyPy' # numpy 1.19 was the first minor release to provide aarch64 wheels, but - # wheels require fixes contained in numpy 1.19.2 - numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64' and platform_system!='AIX' and platform_python_implementation != 'PyPy' - numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64' and platform_python_implementation != 'PyPy' + # wheels require fixes contained in numpy 1.19.3 + numpy==1.19.3; python_version=='3.7' and platform_machine=='aarch64' and platform_system!='AIX' and platform_python_implementation != 'PyPy' + numpy==1.19.3; python_version=='3.8' and platform_machine=='aarch64' and platform_python_implementation != 'PyPy' # arm64 on Darwin supports Python 3.8 and above requires numpy>=1.21.0 # (first version with arm64 wheels available)