summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDan Schult <dschult@colgate.edu>2017-07-19 19:37:19 -0400
committerGitHub <noreply@github.com>2017-07-19 19:37:19 -0400
commit7be0d8f33b46d37264ae181cb2a9fadb310fe687 (patch)
treebca2243f4f9b6e4c0e9acede9be0e8b618b64502 /.travis.yml
parent3227bbab1a9a2c9efa576482a1da06535f8cd6a5 (diff)
downloadnetworkx-7be0d8f33b46d37264ae181cb2a9fadb310fe687.tar.gz
Update graphml to care for a number of issues. (#2515)
* Added graphmlxml class * Allow graphml to read Cytoscape files with incomplete headers Fixes #2197 * graphml pep8 changes * Add a test and some docstring for graphml json unicode treatment addresses #1880 * Change read_graphml and parse_graphml docstring Fixes #1398 * Update LXML writer to include attributes, work with py36 etc. Set LXML as default write_graphml if present. Fixes #448 using code from #1219 * Attempt to get travis to load lxml. * Correct testing both xml and lxml writers in graphml * skip docstring test
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 0ca0744c..a2154790 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -114,7 +114,7 @@ install:
if [[ "${TRAVIS_PYTHON_VERSION}" =~ "2.7" ]]; then
pip install pygraphviz;
fi;
- pip install pydot scikits.sparse;
+ pip install pydot scikits.sparse lxml;
fi
- if [[ "${PYTHON_VM}" != ipy ]]; then
pip install --upgrade nose coverage coveralls;