From 512209a631c9e4a3b10b17d853de31a89c449612 Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Mon, 3 Jun 2024 15:38:59 +0300 Subject: [PATCH] Update Numpy requirements in the project. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 00176366..7486f132 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,8 @@ requires = [ "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.4; python_version=='3.10' and platform_system=='Darwin'", - "numpy==1.22.2; python_version>='3.11'", + "numpy==1.23.5; python_version=='3.11'", + "numpy>=1.26.4; python_version>='3.12'", "pip", "scikit-build>=0.14.0", "setuptools==59.2.0",