Skip to content

Commit

Permalink
only enable numpy>=2 for non-windows machines
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianHofmann authored Nov 14, 2024
1 parent e848cf1 commit c138f88
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ classifiers = [

requires-python = ">=3.9"
dependencies = [
"numpy",
"numpy"; sys_platform != 'win32'
"numpy"<2; sys_platform == 'win32'
"scipy",
"bottleneck",
"toolz",
Expand Down

0 comments on commit c138f88

Please sign in to comment.