Skip to content

Commit

Permalink
pinning to networkx 1.11... 2.0 breaks things
Browse files Browse the repository at this point in the history
  • Loading branch information
brooksandrew committed Sep 24, 2017
1 parent 6a5393d commit f1242f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ installing viz dependencies, if they so choose.

.. code::
pip install .[viz]
pip install postman_problems[viz]
2. Install Graphviz. You need this underlying software application in addition to the `graphviz python package`_ which
Expand Down Expand Up @@ -263,21 +263,20 @@ Developers
==========

If you'd like to fork or contribute directly to this project (PRs welcome), or simply want run the tests, here's how:

1. Install test dependencies.

0. Clone/Fork repo

1. Full install with test and viz dependencies.

.. code::
pip install .[test]
pip install .[viz]
pip install .[test,viz]
Or do an editable install from the beginning. This is my typical approach when developing.

.. code::
pip install -e .
pip install -e .[viz]
pip install -e .[test]
pip install -e .[test,viz]
2.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def read(fname):
python_requires='>=2.7',
install_requires=[
'pandas',
'networkx'
'networkx==1.11'
],
extras_require={
'viz': ['imageio', 'matplotlib', 'graphviz', 'tqdm'],
Expand Down

0 comments on commit f1242f9

Please sign in to comment.