Skip to content
Closed
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
18 changes: 13 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,20 @@ install:
ln -s $(pwd)/iris-test-data-${IRIS_TEST_DATA_SUFFIX} iris-test-data;
fi

# Download + install dask from dask PR #2301
- conda uninstall --quiet dask
- wget https://github.com/jcrist/dask/archive/masked-array.zip;
- unzip masked-array.zip;
- cd dask-masked-array && python setup.py --quiet install;
# Download + install dask from latest master
- python -c "import dask; print dask; print dask.__version__" || echo "no dask present";
- pip uninstall -y dask
- python -c "import dask; print dask; print dask.__version__" || echo "no dask present";
- wget https://github.com/dask/dask/archive/master.zip;
- unzip master.zip;
- cd dask-master;
- python setup.py --quiet build;
- python setup.py --quiet install;
- cd ..;
- python -c "import dask; print dask; print dask.__version__" || echo "no dask present";
- ls -l ./dask-master/dask/array/ma.py;
- ls -l ./dask-master/build/lib/dask/array/ma.py;
- python -c "import dask.array.ma as dma; print dma"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python3 is complaining about the print statement

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will fix when we get back to this, I think it's all on hold for now.
I'm just happy for now that I finally worked out what the problem was !

Summary:
It seems that something changed (e.g. details of conda installation of dask) so that "conda uninstall" was silently failing. Whereas previously (when referencing the jcrist branch) that seemed to be working just fine.


# prepare iris build directory
- python setup.py --with-unpack build_ext --include-dirs=${PREFIX}/include --library-dirs=${PREFIX}/lib
Expand Down