From d8c6fbb3d6f2e71c22c2d3f6162d83dd1bccf480 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 22 Aug 2025 12:51:59 -0400 Subject: [PATCH] Modify numpy dependency condition in pyproject.toml --- tests/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pyproject.toml b/tests/pyproject.toml index 7eca90894..a64b33d6b 100644 --- a/tests/pyproject.toml +++ b/tests/pyproject.toml @@ -12,7 +12,7 @@ version = "0.0.1" dependencies = [ "pytest", "pytest-timeout", - "numpy; sys_platform != 'android' and (sys_platform != 'ios' or python_version < '3.14')", + "numpy; sys_platform != 'android'", "scipy; sys_platform != 'android' and sys_platform != 'ios'", ]