-
Notifications
You must be signed in to change notification settings - Fork 524
[BLD] Add support for NumPy 2.0 wheels #629
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
08327fa
1a83b3e
c801e41
f34309b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "oldest-supported-numpy", "cython>=0.23"] | ||
build-backend = "setuptools.build_meta" | ||
requires = [ | ||
"setuptools>=42", | ||
"oldest-supported-numpy; python_version < '3.9'", | ||
"numpy>=2.0.0; python_version >= '3.9'", | ||
"cython>=0.23" | ||
] | ||
build-backend = "setuptools.build_meta" |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -69,7 +69,6 @@ | |||
license='MIT', | ||||
scripts=[], | ||||
data_files=[], | ||||
setup_requires=["oldest-supported-numpy", "cython>=0.23"], | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
install_requires=["numpy>=1.16", "scipy>=1.6"], | ||||
python_requires=">=3.6", | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The POT/.github/workflows/build_tests.yml Line 25 in cba9c7b
As @henryiii has covered elsewhere (can't remember which blog) the purpose of This should get updated, but this is also a separate (adjacent) scope issue than NumPy 2.0, so I'll open up PR #630 for this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks we need to cleanup stuff |
||||
classifiers=[ | ||||
|
Uh oh!
There was an error while loading. Please reload this page.