From 9deae4d1113fcc79c1c29bd221aa730f5d12e597 Mon Sep 17 00:00:00 2001 From: Sandro Date: Thu, 23 May 2024 22:08:14 +0200 Subject: [PATCH] Update python-igraph dependency 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(),