py-charm4py: add missing dependencies (#38830)

This commit is contained in:
Manuela Kuhn 2023-07-11 20:49:49 +02:00 committed by GitHub
parent 299066feb5
commit ed247744e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,10 +34,15 @@ class PyCharm4py(PythonPackage):
# Builds its own charm++, so no charmpp dependency # Builds its own charm++, so no charmpp dependency
depends_on("python@2.7:2.8,3.4:", type=("build", "run")) depends_on("python@2.7:2.8,3.4:", type=("build", "run"))
depends_on("py-setuptools", type="build") 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-cython", type="build")
depends_on("py-cffi@1.7:", type="build") depends_on("py-cffi@1.7:", type="build")
depends_on("py-numpy@1.10.0:", type=("build", "run")) depends_on("py-numpy@1.10.0:", type=("build", "run"))
depends_on("py-greenlet", 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("cuda")
depends_on("mpi", when="+mpi") depends_on("mpi", when="+mpi")