From bc64cea770f78d943d95a1a0497fcf0123d4e73d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szabolcs=20Horv=C3=A1t?= Date: Wed, 19 Jul 2023 23:22:35 +0200 Subject: [PATCH] change python-igraph to igraph --- INSTALL.rst | 8 ++++---- doc/requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/INSTALL.rst b/INSTALL.rst index 3d86e64..9bf864c 100644 --- a/INSTALL.rst +++ b/INSTALL.rst @@ -65,7 +65,7 @@ Install the latest version (Python Console) Install the *current* release of ``py4cytoscape`` with ``pip``:: - pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour + pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour pip install py4cytoscape @@ -75,19 +75,19 @@ Install the development version (Python Console) To install the *latest* py4cytoscape development version, instead of ``pip install py4cytoscape``, use:: - pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour + pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour pip install git+https://github.com/cytoscape/py4cytoscape.git To install the py4cytoscape branch (for example 0.0.10) version, instead of ``pip install py4cytoscape``, use:: - pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour + pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour pip install git+https://github.com/cytoscape/py4cytoscape.git@0.0.10 Alternately, to install *a particular* py4cytoscape development version (e.g., 0.0.11), instead of ``pip install py4cytoscape``, use:: - pip install python-igraph requests pandas networkx colorbrewer chardet decorator backoff colour + pip install igraph requests pandas networkx colorbrewer chardet decorator backoff colour git clone git://github.com/cytoscape/py4cytoscape@0.0.11 Verify Cytoscape connection diff --git a/doc/requirements.txt b/doc/requirements.txt index 22e02ab..e4264d1 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -4,7 +4,7 @@ networkx requests colorbrewer chardet -python-igraph +igraph sphinx_autodoc_typehints sphinx_rtd_theme ipykernel diff --git a/setup.py b/setup.py index 10c3075..e5061b2 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ 'pandas', 'networkx', 'requests', - 'python-igraph', + 'igraph', 'colorbrewer', 'chardet', 'decorator',