Skip to content
Snippets Groups Projects
Commit fe688f08 authored by Eric Müller's avatar Eric Müller :mountain_bicyclist:
Browse files

fix(py-ray): constrain to older bazel

I just hit https://github.com/ray-project/ray/issues/31504 when trying to build
ebrains on a unconstrained spack (0.20.x) → bazel 6.1.1 is too new for py-ray.
parent f0d5777e
No related branches found
No related tags found
2 merge requests!484create new experimental release,!479fix(py-ray): constrain to older bazel
Pipeline #26611 passed with stage
in 15 minutes and 33 seconds
......@@ -20,7 +20,7 @@ class PyRay(PythonPackage):
depends_on("python@3.6:3.10", when="@2.0.1", type=("build", "run"))
depends_on("python@3.6:3.8", when="@0.8.7", type=("build", "run"))
depends_on("bazel@4.2.2:", when="@2.0.1", type="build")
depends_on("bazel@4.2.2:5", when="@2.0.1", type="build")
depends_on("bazel@3.2.0", when="@0.8.7", type="build")
depends_on("npm", type="build")
depends_on("py-setuptools", type="build")
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment