From e33b16b1b3b68ae2853505a1777ca37416c0de35 Mon Sep 17 00:00:00 2001 From: Adam Weeden Date: Wed, 11 Jan 2023 15:40:26 -0500 Subject: [PATCH 1/2] fix: Stop trying to use two different numpy on mac with python >= 3.10 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e30a76fc..a06416f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,6 @@ requires = [ "numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'", "numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'", "numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'", - "numpy==1.21.2; python_version>='3.10'", + "numpy==1.21.2; python_version>='3.10' and platform_system!='Darwin''", "numpy==1.21.4; python_version>='3.10' and platform_system=='Darwin'" ] From 28b8277e4d1be7264b1689bdba71fb3649894cda Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Tue, 24 Jan 2023 11:24:54 +0300 Subject: [PATCH 2/2] Typo fix. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a06416f3..fa0c3a32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,6 @@ requires = [ "numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'", "numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'", "numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'", - "numpy==1.21.2; python_version>='3.10' and platform_system!='Darwin''", + "numpy==1.21.2; python_version>='3.10' and platform_system!='Darwin'", "numpy==1.21.4; python_version>='3.10' and platform_system=='Darwin'" ]