From bdb618d5d17f6742ff58f938851cc64a15bb861f Mon Sep 17 00:00:00 2001 From: Sandro Date: Mon, 27 May 2024 09:29:59 +0200 Subject: [PATCH] Update python-igraph dependency (#17) The package has been renamed to `igraph` and so has the importable module. Package `python-igraph` is now legacy. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b7927eb..6b2caa7 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ ], extras_require={ "convert-vtk": DEPS_VTK, - "all": DEPS_VTK + ["python-igraph>=0.8.0"], + "all": DEPS_VTK + ["igraph>=0.8.0"], "docs": ["sphinx", "sphinx-bluebrain-theme"], }, packages=find_packages(),