Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

MAINT: Disable numpy 1.16.0 for Py2.7 #2855

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

Merged
merged 3 commits into from
Jan 16, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
MAINT: Specifically exclude numpy 1.16.0
  • Loading branch information
effigies authored Jan 15, 2019
commit 704e231a057526ecb1d1708aa6b74746c6fc000c
4 changes: 2 additions & 2 deletions 4 nipype/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_nipype_gitversion():
# Numpy bug in python 3.7:
# https://www.opensourceanswers.com/blog/you-shouldnt-use-python-37-for-data-science-right-now.html
NUMPY_MIN_VERSION_37 = '1.15.3'
NUMPY_MAX_VERSION_27 = '1.16.0'
NUMPY_BAD_VERSION_27 = '1.16.0'
SCIPY_MIN_VERSION = '0.14'
TRAITS_MIN_VERSION = '4.6'
DATEUTIL_MIN_VERSION = '2.2'
Expand Down Expand Up @@ -137,7 +137,7 @@ def get_nipype_gitversion():
REQUIRES = [
'nibabel>=%s' % NIBABEL_MIN_VERSION,
'networkx>=%s' % NETWORKX_MIN_VERSION,
'numpy>=%s,<%s ; python_version == "2.7"' % (NUMPY_MIN_VERSION, NUMPY_MAX_VERSION_27),
'numpy>=%s,!=%s ; python_version == "2.7"' % (NUMPY_MIN_VERSION, NUMPY_BAD_VERSION_27),
'numpy>=%s ; python_version > "3.0" and python_version < "3.7"' % NUMPY_MIN_VERSION,
'numpy>=%s ; python_version >= "3.7"' % NUMPY_MIN_VERSION_37,
'python-dateutil>=%s' % DATEUTIL_MIN_VERSION,
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.