diff --git a/setup.cfg b/setup.cfg index 8ff502f..0e227af 100644 --- a/setup.cfg +++ b/setup.cfg @@ -35,9 +35,10 @@ install_requires = numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64' numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64' - # 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' + # arm64 on Darwin supports Python 3.8 and above requires numpy>=1.21.0 + # (first version with universal2 wheels available) + numpy==1.21.0; python_version=='3.8' and platform_machine=='arm64' and platform_system=='Darwin' + numpy==1.21.0; 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'