summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzabolcs Horvát <szhorvat@gmail.com>2024-08-01 06:34:20 +0300
committerGitHub <noreply@github.com>2024-08-01 05:34:20 +0200
commit20e6b60fce2c21962148a158a5db8164183334c4 (patch)
tree20ecb4132b599247ed2bf8e6f7529a8346bc04b1
parent5f86ee5d9390c0b6ef8150fde970a2b87c728d2a (diff)
downloadspack-20e6b60fce2c21962148a158a5db8164183334c4.tar.gz
spack-20e6b60fce2c21962148a158a5db8164183334c4.tar.bz2
spack-20e6b60fce2c21962148a158a5db8164183334c4.tar.xz
spack-20e6b60fce2c21962148a158a5db8164183334c4.zip
py-igraph: add 0.11.6 (#45132)
-rw-r--r--var/spack/repos/builtin/packages/py-igraph/package.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/py-igraph/package.py b/var/spack/repos/builtin/packages/py-igraph/package.py
index 5468e008c5..36708d10ee 100644
--- a/var/spack/repos/builtin/packages/py-igraph/package.py
+++ b/var/spack/repos/builtin/packages/py-igraph/package.py
@@ -15,6 +15,7 @@ class PyIgraph(PythonPackage):
license("GPL-2.0-or-later")
+ version("0.11.6", sha256="837f233256c3319f2a35a6a80d94eafe47b43791ef4c6f9e9871061341ac8e28")
version("0.10.6", sha256="76f7aad294514412f835366a7d9a9c1e7a34c3e6ef0a6c3a1a835234323228e8")
depends_on("c", type="build") # generated
@@ -25,10 +26,11 @@ class PyIgraph(PythonPackage):
depends_on("cmake", type="build")
depends_on("igraph+shared@0.10.6", when="@0.10.6")
+ depends_on("igraph+shared@0.10.13", when="@0.11.6")
depends_on("pkgconfig", type="build")
depends_on("py-setuptools", type="build")
depends_on("py-texttable@1.6.2:", type=("build", "run"))
- depends_on("py-matplotlib@3.5", type="run", when="+matplotlib")
+ depends_on("py-matplotlib@3.5:", type="run", when="+matplotlib")
def setup_build_environment(self, env):
env.set("IGRAPH_USE_PKG_CONFIG", "1")