Skip to content

Commit

Permalink
attempted fix for #307 from @aryarm
Browse files Browse the repository at this point in the history
  • Loading branch information
brentp committed Jun 17, 2024
1 parent 0143cb1 commit fcf9f03
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build-system]
requires = [
"setuptools",
"wheel",
"cython>=0.23.3",
'oldest-supported-numpy; os_name != "nt"',
'numpy; os_name == "nt"'
"setuptools",
"wheel",
"cython>=0.23.3",
'oldest-supported-numpy; os_name != "nt"' and python_version < "3.9"',
'numpy>=2.0.0; os_name == "nt" and python_version >= "3.9"',
]

0 comments on commit fcf9f03

Please sign in to comment.