We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55d4815 commit cd7fb0aCopy full SHA for cd7fb0a
repos/spack_repo/builtin/packages/r_gtable/package.py
@@ -26,9 +26,11 @@ class RGtable(RPackage):
26
version("0.3.0", sha256="fd386cc4610b1cc7627dac34dba8367f7efe114b968503027fb2e1265c67d6d3")
27
version("0.2.0", sha256="801e4869830ff3da1d38e41f5a2296a54fc10a7419c6ffb108582850c701e76f")
28
29
- depends_on("r@3.0:", type=("build", "run"))
30
- depends_on("r@3.5:", type=("build", "run"), when="@0.3.3:")
31
- depends_on("r-rlang@1.1.0:", type=("build", "run"), when="@0.3.3:")
32
- depends_on("r-lifecycle", type=("build", "run"), when="@0.3.3:")
33
- depends_on("r-glue", type=("build", "run"), when="@0.3.3:")
34
- depends_on("r-cli", type=("build", "run"), when="@0.3.3:")
+ with default_args(type=("build", "run")):
+ depends_on("r@3.0:")
+ depends_on("r@3.5:", when="@0.3.3:")
+ depends_on("r@4:", when="@0.3.6:")
+ depends_on("r-rlang@1.1.0:", when="@0.3.3:")
+ depends_on("r-lifecycle", when="@0.3.3:")
35
+ depends_on("r-glue", when="@0.3.3:")
36
+ depends_on("r-cli", when="@0.3.3:")
0 commit comments