Skip to content

Commit

Permalink
steps: module now loads all required dependencies (#1834)
Browse files Browse the repository at this point in the history
  • Loading branch information
tristan0x committed Feb 15, 2023
1 parent 4a6eb3c commit 191cdb4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bluebrain/repo-patches/packages/steps/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ class Steps(CMakePackage):
depends_on("pkg-config", type="build")
depends_on("py-build", type="build", when="@5:")
depends_on("py-cython")
depends_on("py-h5py", type=("build", "test"))
depends_on("py-h5py", type=("build", "test", "run"))
depends_on("py-gcovr", when="+coverage", type="build")
depends_on("py-matplotlib", type=("build", "test"))
depends_on("py-mpi4py", when="+distmesh")
depends_on("py-mpi4py", when="+distmesh", type=("build", "test", "run"))
depends_on("py-nose", when="@3:", type=("build", "test"))
depends_on("py-numpy", type=("build", "test"))
depends_on("py-scipy", type=("build", "test"))
depends_on("py-numpy", type=("build", "test", "run"))
depends_on("py-scipy", type=("build", "test", "run"))
depends_on("py-unittest2", type=("build", "test"))
depends_on("python")
depends_on("python", type=("build", "test", "run"))
depends_on("omega-h+gmsh+mpi", when="~bundle+distmesh")
depends_on("gmsh", when="+distmesh")
depends_on("easyloggingpp", when="~bundle")
Expand Down

0 comments on commit 191cdb4

Please sign in to comment.