From 7cdcbe0f53ca6e0927174f558d0c1bd93b7e6392 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 16 Apr 2025 13:46:13 +0800 Subject: [PATCH] Numpy now available for iOS on Python 3.13. --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 47dcfcf..3d1081b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,12 +44,12 @@ requires = [ or (platform_system == 'iOS' and python_version == '3.13') \ or (platform_system == 'Android' and python_version == '3.13') \ or (platform_system == 'Linux' and python_version == '3.13')""", - # Numpy not available on iOS for 3.13+, or all on 3.14. + # Numpy not available on 3.14+. """numpy; \ (platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \ - or (platform_system == 'iOS' and python_version < '3.13') \ + or (platform_system == 'iOS' and python_version < '3.14') \ or (platform_system == 'Android' and python_version < '3.14')""", - # Pandas not available on iOS for 3.13+, or all on 3.14. + # Pandas not available on iOS for 3.13+, or all on 3.14+. """pandas; \ (platform_system != 'iOS' and platform_system != 'Android' and python_version < '3.14') \ or (platform_system == 'iOS' and python_version < '3.13') \