Skip to content
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

NEP29: Bump minimum numpy to 1.13 #868

Merged
merged 2 commits into from
Jan 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion doc/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ Requirements
.. check these against setup.cfg

* Python_ 3.5.1 or greater
* NumPy_ 1.12 or greater
* NumPy_ 1.13 or greater
* Packaging_ 14.3 or greater
* SciPy_ (optional, for full SPM-ANALYZE support)
* h5py_ (optional, for MINC2 support)
* PyDICOM_ 0.9.9 or greater (optional, for DICOM support)
Expand Down
1 change: 1 addition & 0 deletions doc/source/links_names.txt
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@
.. _datapkg: https://pythonhosted.org/datapkg/
.. _python imaging library: https://pypi.python.org/pypi/Pillow
.. _h5py: https://www.h5py.org/
.. _packaging: https://packaging.pypa.io

.. Python imaging projects
.. _PyMVPA: http://www.pymvpa.org
Expand Down
3 changes: 2 additions & 1 deletion min-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Auto-generated by tools/update_requirements.py
numpy ==1.12
numpy ==1.13
packaging ==14.3
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Auto-generated by tools/update_requirements.py
numpy >=1.12
numpy >=1.13
packaging >=14.3
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ provides =
[options]
python_requires = >=3.5.1
install_requires =
numpy >=1.12
packaging
numpy >=1.13
packaging >=14.3
tests_require =
nose >=0.11
pytest
Expand Down