diff options
author | leycec <leycec@gmail.com> | 2016-10-03 03:34:24 -0400 |
---|---|---|
committer | leycec <leycec@gmail.com> | 2016-10-06 22:46:08 -0400 |
commit | 481f3e8e405cafc05c570e8fc5a2a4d531f86121 (patch) | |
tree | 283813be7fbb908ac39d52ca3703fbdde5cc064f /.travis.yml | |
parent | 91d3de2ce319c60f8217c08b2e6831ee6ee45284 (diff) | |
download | networkx-481f3e8e405cafc05c570e8fc5a2a4d531f86121.tar.gz |
PyDot support reverted from "pydotplus" to "pydot"
Support for the long-obsolete "pydotplus" fork has been reverted back to the
well-maintained parent "pydot" project, fixing #2235. All "nx_pydot" functions
now explicitly require pydot >= 1.2.3, which broke backwards API compatibility
and resolved long-standing Python 2.x issues. Sanity is restored.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 7ea1ab41..32517b77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,15 +102,10 @@ install: source activate test-environment; echo "Testing that gdal installed ok by if osgeo imports"; python -c "from osgeo import ogr;print('importing ogr worked')"; - if [[ "${TRAVIS_PYTHON_VERSION}" =~ "3.3" ]]; then - pip install https://pypi.python.org/packages/source/p/pydotplus/pydotplus-2.0.2.tar.gz#md5=0e2fc3dbdfd846819d4cd3769cb4595b; - else - pip install pydotplus; - fi; if [[ "${TRAVIS_PYTHON_VERSION}" =~ "2.7" ]]; then pip install pygraphviz; fi; - pip install scikits.sparse; + pip install pydot scikits.sparse; fi - if [[ "${PYTHON_VM}" != ipy ]]; then pip install --upgrade nose coverage coveralls; |