-
Notifications
You must be signed in to change notification settings - Fork 28
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
Testing dev tests with numpy 2.0 #1006
base: master
Are you sure you want to change the base?
Conversation
pyproject.toml
Outdated
@@ -2,6 +2,7 @@ | |||
name = "crds" | |||
description = "Calibration Reference Data System, HST/JWST/Roman reference file management" | |||
authors = [{ name = "STScI CRDS s/w developers" }] | |||
requires-python = ">=3.11" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
requires-python = ">=3.11" | |
requires-python = ">=3.9" |
Since we support 3.9+
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At the moment I can't get numpy 2.0 to be picked up without being in python 3.11.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These tests are not even picking up numpy 2.0
. The requirements file included in this PR does not appear to be doing anything.
Note that if you look at the dev wheels archive you are linking to in it. There very much are wheels for 3.9 and 3.10. Indeed this is true for both numpy and scipy.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right I found that numpy 2.0 wasn't getting picked up after some digging. Looking into that.
No description provided.