-
Notifications
You must be signed in to change notification settings - Fork 21
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
TODO: un-lock scipy #357
Comments
bash script I'm using for debugging #!/bin/bash
for f in `seq 2 6`; do
echo "Running tests for $f processors";
mpirun -n $f nosetests test.test_sample:$1;
done Usage: |
I figured out what broke our implementation. @smattis I tracked it to here is the list of "suspects": This is the last one we pass on: This breaks it: |
it appears that the behavior change is that files aren't left open, for some reason this poses a problem for us? |
We should fix this for version 3. I suggest we move to pickle, which should take care of the problem |
upgrading SciPy requires python 3.5 |
fixed for v3 since scipy.io is replaced with pickle. |
we need to get to the bottom of what the problem is in
scipy==1.3.1
...Using
ripgrep
, runrg scipy
, pass-C 2
for context around regex matches (or-B
for before,-A
for after).I would call this relatively high priority (despite many common projects version-locking
scipy
), and will put in a bit of time on it myself.The goal would obviously be backwards-compatibility, and if possible... I would like to avoid going through the detailed changelog between the two versions.
The text was updated successfully, but these errors were encountered: