Skip to content

Commit 8761f37

Browse files
authored
Restrict numpy to less than 2.0.0 (#413)
1 parent 6602919 commit 8761f37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ license = { text = 'BSL-1.1' }
2121
requires-python = '>=3.8,<3.13'
2222
readme = 'README.md'
2323
dependencies = [
24-
"numpy>=1.21.0;python_version<'3.10'",
25-
"numpy>=1.23.3;python_version>='3.10' and python_version<'3.12'",
26-
"numpy>=1.26.0;python_version>='3.12'",
24+
"numpy>=1.21.0,<2.0.0;python_version<'3.10'",
25+
"numpy>=1.23.3,<2.0.0;python_version>='3.10' and python_version<'3.12'",
26+
"numpy>=1.26.0,<2.0.0;python_version>='3.12'",
2727
"pandas>=1.4.0;python_version<'3.11'",
2828
"pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'",
2929
"pandas>=2.1.1;python_version>='3.12'",

0 commit comments

Comments
 (0)