Skip to content

Commit a8dbd0b

Browse files
authored
Unpin JAX (#1350)
A new version of `tensorflowjs` was released yesterday (4.16.0): https://pypi.org/project/tensorflowjs/#history This include a fix for the incompatibility with the latest version of JAX. http://b/316967430
1 parent a150398 commit a8dbd0b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile.tmpl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,11 @@ RUN pip install lightgbm==$LIGHTGBM_VERSION && \
157157
{{ end }}
158158

159159
# Install JAX
160-
# b/316967430 Remove pin once new version of tensorflowjs is released (> 4.15.0)
161160
{{ if eq .Accelerator "gpu" }}
162-
RUN pip install "jax[cuda11_local]==0.4.21" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html && \
161+
RUN pip install "jax[cuda11_local]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html && \
163162
/tmp/clean-layer.sh
164163
{{ else }}
165-
RUN pip install jax[cpu]==0.4.21 && \
164+
RUN pip install jax[cpu] && \
166165
/tmp/clean-layer.sh
167166
{{ end }}
168167

0 commit comments

Comments
 (0)