From 5ef5fc19a708d504392cb3eaa5217b7fbbc5aa0d Mon Sep 17 00:00:00 2001 From: Gaurav Sheni Date: Fri, 21 Jun 2024 17:24:22 -0400 Subject: [PATCH] Restrict numpy to less than 2.0.0 (#119) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 79c205f..802583d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,9 +21,9 @@ license = { text = 'BSL-1.1' } requires-python = '>=3.8,<3.13' readme = 'README.md' dependencies = [ - "numpy>=1.21.0;python_version<'3.10'", - "numpy>=1.23.3;python_version>='3.10' and python_version<'3.12'", - "numpy>=1.26.0;python_version>='3.12'", + "numpy>=1.21.0,<2.0.0;python_version<'3.10'", + "numpy>=1.23.3,<2.0.0;python_version>='3.10' and python_version<'3.12'", + "numpy>=1.26.0,<2.0.0;python_version>='3.12'", "pandas>=1.4.0;python_version<'3.11'", "pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'", "pandas>=2.1.1;python_version>='3.12'",