From a6d2357b042a8a1d4f7e479f7b435d041f0b3c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai=20Capot=C4=83?= Date: Tue, 22 Jan 2019 11:07:22 -0800 Subject: [PATCH] dev: Remove superseded workaround from PR #408 New Theano release works with NumPy>=1.16. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bae1ad4d0..8ac5042db 100644 --- a/setup.py +++ b/setup.py @@ -124,12 +124,12 @@ def finalize_options(self): 'cython', 'mpi4py', 'nitime', - 'numpy<1.16', # See https://github.com/Theano/Theano/pull/6671 + 'numpy', 'scikit-learn[alldeps]>=0.18', 'scipy!=1.0.0', # See https://github.com/scipy/scipy/pull/8082 'statsmodels', 'pymanopt', - 'theano', + 'theano>=1.0.4', # For NumPy>=1.16 compatibility 'pybind11>=1.7', 'psutil', 'nibabel',