From 7fb8d929f1a867962209a969196197f4e162c2c1 Mon Sep 17 00:00:00 2001 From: aptalca Date: Thu, 23 Sep 2021 17:11:56 -0400 Subject: [PATCH] Backport PR #43722: BUG: set numpy requirement for aarch64 and py3.9 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0d1aefb9d4b55..28925ce62a761 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ requires = [ # Copied from https://github.com/scipy/scipy/blob/master/pyproject.toml (which is also licensed under BSD) "numpy==1.17.3; python_version=='3.7' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64'", "numpy==1.18.3; python_version=='3.8' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64'", - "numpy==1.19.3; python_version>='3.9' and (platform_machine!='arm64' or platform_system!='Darwin') and platform_machine!='aarch64'", + "numpy==1.19.3; python_version>='3.9' and (platform_machine!='arm64' or platform_system!='Darwin')", # Aarch64(Python 3.9 requirements are the same as AMD64) "numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64'", "numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'",