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

fix(py-jaxlib): there might be multiple whl to install

parent 35ccead6
No related branches found
No related tags found
No related merge requests found
...@@ -234,5 +234,5 @@ class PyJaxlib(PythonPackage, CudaPackage, ROCmPackage): ...@@ -234,5 +234,5 @@ class PyJaxlib(PythonPackage, CudaPackage, ROCmPackage):
) )
python(*args) python(*args)
whl = glob.glob(join_path("dist", "*.whl"))[0] for whl in glob.glob(join_path("dist", "*.whl")):
pip(*PythonPipBuilder.std_args(self), f"--prefix={self.prefix}", whl) pip(*PythonPipBuilder.std_args(self), f"--prefix={self.prefix}", whl)
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