-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Unpin theano #2728
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
Unpin theano #2728
Conversation
It looks like there are some meaningful failures in |
Strange, test_variational_inference.py pass locally for me (MacOS). |
290f5fa
to
ebdd49b
Compare
Same – I have a python 2.7 installation and can recreate the problem from Rebased and pushed again to see if it fixes itself - there was a theano 1.0.1 release a week ago on pypi (none of the changes look like they should help us). |
6e3a088
to
ee276e3
Compare
Trying again... #2777 |
Found two problems, which both seem related to CI and testing, not to functionality.
-- if you
conda install mkl-service
you need to also setMKL_THREADING_LAYER=GNU
(which the error message tells you). We don't requiremkl-service
(though we do recommend it), and it only gets installed increate-testenv.sh
, so I don't think we need to do anything else with that.-- new theano imports
nose
in its unittests, and we have a unittest where we import theano unittests, so I added that to therequirements-dev.txt
.