summaryrefslogtreecommitdiff
path: root/INSTALL.rst
diff options
context:
space:
mode:
authorRoss Barnowski <rossbar@berkeley.edu>2020-07-17 15:10:11 -0700
committerGitHub <noreply@github.com>2020-07-17 15:10:11 -0700
commit77774fb340dc1828207a8b43b030462785fb94f1 (patch)
tree6c54156f1bb3bd0d947b5d15fa1ff275aa964a3b /INSTALL.rst
parentfe8ac9f2d9c66e0337e11688078fdaccc90052cd (diff)
downloadnetworkx-77774fb340dc1828207a8b43b030462785fb94f1.tar.gz
MAINT: Remove dependency version info from INSTALL (#4081)
* DOC: wording update. scipy installation almost never requires compilation now. * DOC,MAINT: Remove versions from INSTALL.rst Replace dependency version info in INSTALL with a link to the requirements. This prevents the INSTALL document from getting out-of-sync with the actual required dependency versions. * MAINT: Remove external link to requirements.
Diffstat (limited to 'INSTALL.rst')
-rw-r--r--INSTALL.rst18
1 files changed, 10 insertions, 8 deletions
diff --git a/INSTALL.rst b/INSTALL.rst
index b6ddff97..197edace 100644
--- a/INSTALL.rst
+++ b/INSTALL.rst
@@ -80,24 +80,26 @@ Optional packages
-----------------
.. note::
- Some optional packages (e.g., `scipy`, `gdal`) may require compiling
+ Some optional packages (e.g., `gdal`) may require compiling
C or C++ code. If you have difficulty installing these packages
with `pip`, please review the instructions for installing
the full `scientific Python stack <https://scipy.org/install.html>`_.
-The following optional packages provide additional functionality.
+The following optional packages provide additional functionality. See the
+files in the ``requirements/`` directory for information about specific
+version requirements.
-- `NumPy <http://www.numpy.org/>`_ (>= 1.15.4) provides matrix representation of
+- `NumPy <http://www.numpy.org/>`_ provides matrix representation of
graphs and is used in some graph algorithms for high-performance matrix
computations.
-- `SciPy <http://scipy.org/>`_ (>= 1.1.0) provides sparse matrix representation
+- `SciPy <http://scipy.org/>`_ provides sparse matrix representation
of graphs and many numerical scientific tools.
-- `pandas <http://pandas.pydata.org/>`_ (>= 0.23.3) provides a DataFrame, which
+- `pandas <http://pandas.pydata.org/>`_ provides a DataFrame, which
is a tabular data structure with labeled axes.
-- `Matplotlib <http://matplotlib.org/>`_ (>= 3.0.2) provides flexible drawing of
+- `Matplotlib <http://matplotlib.org/>`_ provides flexible drawing of
graphs.
-- `PyGraphviz <http://pygraphviz.github.io/>`_ (>= 1.5) and
- `pydot <https://github.com/erocarrera/pydot>`_ (>= 1.2.4) provide graph drawing
+- `PyGraphviz <http://pygraphviz.github.io/>`_ and
+ `pydot <https://github.com/erocarrera/pydot>`_ provide graph drawing
and graph layout algorithms via `GraphViz <http://graphviz.org/>`_.
- `PyYAML <http://pyyaml.org/>`_ provides YAML format reading and writing.
- `gdal <http://www.gdal.org/>`_ provides shapefile format reading and writing.