From dfa59720966f3bbd80f863051fc619b8bf761b63 Mon Sep 17 00:00:00 2001 From: Roman Bolgaryn Date: Wed, 8 Nov 2023 11:09:37 +0100 Subject: [PATCH] Update setup.py :code:`pip install igraph` is incorrect, we should use :code:`pip install python-igraph`instead --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a5e52a879..8fa971a01 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ "deepdiff"], extras_require={ "docs": ["numpydoc", "sphinx", "sphinx_rtd_theme"], - "plotting": ["plotly", "matplotlib", "igraph", "geopandas", "geojson"], + "plotting": ["plotly", "matplotlib", "python-igraph", "geopandas", "geojson"], # "shapely", "pyproj" are dependencies of geopandas and so already available; # "base64", "hashlib", "zlib" produce installing problems, so they are not included "test": ["pytest<=7.0", "pytest-xdist"], @@ -62,7 +62,7 @@ # "fiona" is a depedency of geopandas and so already available "converter": ["matpowercaseframes"], "all": ["numpydoc", "sphinx", "sphinx_rtd_theme", - "plotly>=3.1.1", "matplotlib", "igraph", "geopandas", "geojson", + "plotly>=3.1.1", "matplotlib", "python-igraph", "geopandas", "geojson", "pytest<=7.0", "pytest-xdist", "ortools", # lightsim2grid, "xlsxwriter", "openpyxl", "cryptography",