Skip to content

Commit

Permalink
Restrict networkX to <2.0 for now (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuolleko authored Sep 28, 2017
1 parent a6f641a commit c804b94
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Changelog
dev
---

- Furhther performance improvements for rerunning inference using stored data via caches
- Further performance improvements for rerunning inference using stored data via caches
- Added the general Gaussian noise example model (fixed covariance)
- restrict NetworkX to versions < 2.0

0.6.2 (2017-09-06)
------------------
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
**Version 0.6.2 released!** See the CHANGELOG and [notebooks](https://github.com/elfi-dev/notebooks).

**NOTE:** For the time being NetworkX 2 is incompatible with ELFI.

ELFI - Engine for Likelihood-Free Inference
===========================================

Expand Down Expand Up @@ -80,6 +82,7 @@ Resolving these may sometimes go wrong:
- On OS X with Anaconda virtual environment say `conda install python.app` and then use
`pythonw` instead of `python`.
- Note that ELFI requires Python 3.5 or greater so try `pip3 install elfi`.
- Make sure your Python installation meets the versions listed in `requirements.txt`.


Citation
Expand Down
3 changes: 3 additions & 0 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ Resolving these may sometimes go wrong:
* On OS X with Anaconda virtual environment say `conda install python.app` and then use `pythonw` instead of `python`.
* Note that ELFI requires Python 3.5 or greater
* In some environments ``pip`` refers to Python 2.x, and you have to use ``pip3`` to use the Python 3.x version
* Make sure your Python installation meets the versions listed in requirements_.

.. _requirements: https://github.com/elfi-dev/elfi/blob/dev/requirements.txt

Developer installation from sources
-----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ numpy>=1.12.1
scipy>=0.19
matplotlib>=1.1
GPy>=1.0.9
networkX>=1.11
networkX>=1.11,<2.0
ipyparallel>=6
toolz>=0.8
scikit-learn>=0.18.1

0 comments on commit c804b94

Please sign in to comment.