summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorManuela Kuhn <36827019+manuelakuhn@users.noreply.github.com>2023-07-11 20:49:49 +0200
committerGitHub <noreply@github.com>2023-07-11 14:49:49 -0400
commited247744e7b738f55df3f955a86b406ee0c5bd3c (patch)
tree1f8c93925a0c76aca30ddc3fef5ab27528d6cecd /var
parent299066feb5fcf98a899da74dcefb16faa2fc3417 (diff)
downloadspack-ed247744e7b738f55df3f955a86b406ee0c5bd3c.tar.gz
spack-ed247744e7b738f55df3f955a86b406ee0c5bd3c.tar.bz2
spack-ed247744e7b738f55df3f955a86b406ee0c5bd3c.tar.xz
spack-ed247744e7b738f55df3f955a86b406ee0c5bd3c.zip
py-charm4py: add missing dependencies (#38830)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-charm4py/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-charm4py/package.py b/var/spack/repos/builtin/packages/py-charm4py/package.py
index efbfc40a75..f84a0b06d6 100644
--- a/var/spack/repos/builtin/packages/py-charm4py/package.py
+++ b/var/spack/repos/builtin/packages/py-charm4py/package.py
@@ -34,10 +34,15 @@ class PyCharm4py(PythonPackage):
# Builds its own charm++, so no charmpp dependency
depends_on("python@2.7:2.8,3.4:", type=("build", "run"))
depends_on("py-setuptools", type="build")
+ # in newer pip versions --install-option does not exist
+ depends_on("py-pip@:23.0", type="build")
depends_on("py-cython", type="build")
depends_on("py-cffi@1.7:", type="build")
depends_on("py-numpy@1.10.0:", type=("build", "run"))
depends_on("py-greenlet", type=("build", "run"))
+
+ depends_on("autoconf", type="build")
+ depends_on("automake", type="build")
depends_on("cuda")
depends_on("mpi", when="+mpi")