Skip to content

Commit

Permalink
Add support for numpy 2.0.0 (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo authored Dec 2, 2024
1 parent 20f6ebf commit ff9e9ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ dependencies = [
'cloudpickle>=2.1.0',
'compress-pickle>=1.2.0',
'humanfriendly>=8.2',
"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'",
"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'",
"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'",
Expand All @@ -47,9 +47,9 @@ dependencies = [
"torch>=2.2.0;python_version>='3.12'",
'tqdm>=4.29',
'XlsxWriter>=1.2.8',
'rdt>=1.12.1',
'sdmetrics>=0.14.1',
'sdv>=1.13.1',
'rdt>=1.13.1',
'sdmetrics>=0.17.0',
'sdv>=1.17.2',
]

[project.urls]
Expand Down

0 comments on commit ff9e9ee

Please sign in to comment.