-
Notifications
You must be signed in to change notification settings - Fork 31
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
numpy version updated #125
Conversation
docs/source/releases.rst
Outdated
@@ -101,7 +101,7 @@ If you were previously using https://github.com/ioos/qartod , see the *Migrating | |||
* Split out :code:`threshold` parameters into explicit :code:`suspect` and :code:`fail` parameters (`#4 <https://github.com/ioos/ioos_qc/pull/4>`_) | |||
* Bug fixes | |||
* Remove support for python 2 | |||
* Upgrade numpy to 1.14 | |||
* Upgrade numpy to < 2.0.0 |
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.
You don't edit past release notes. That is still true for the 0.1.0 from Feb 2019.
docs/source/releases.rst
Outdated
@@ -114,7 +114,7 @@ We recommend going test by test and comparing the documentation: `0.0.3 <https:/ | |||
|
|||
Specific changes to be aware of include: | |||
|
|||
* Removing support for python 2 and requiring :code:`numpy>=1.14`. | |||
* Removing support for python 2 and requiring :code:`numpy<2`. |
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.
Same comment as above.
requirements.txt
Outdated
@@ -2,7 +2,7 @@ geographiclib | |||
geojson | |||
h5netcdf | |||
jsonschema | |||
numpy>=1.14 | |||
numpy<2 |
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.
The minimum Python is still a requirement. We are adding an upper pin only.
numpy<2 | |
numpy>=1.14,<2 |
3ca438a
to
1ea76ea
Compare
Numpy version should be less than 2 until we can fix the breaking changes.