You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of #405 the presubmit CI is based on package versions listed in the
`manifest.yaml` that is committed to the repository. This has not been
updated for ~1 month, so the presubmit CI is testing ~1 month old
versions of the ecosystem. This PR updates it using the commit from
https://github.com/NVIDIA/JAX-Toolbox/tree/znightly-2024-01-03-7395605285,
generated by the nightly CI run.
Because this bumps the JAX version by ~1 month, we have to include fixes
for deprecations. In particular replacing `jax.random.KeyArray` with
plain `jax.Array`
(nvjax-svc-0/t5x@4d5ec2f).
The deprecated name is used in older versions of the `chex` package,
which are being selected by pip's dependency resolver despite newer
versions being available. We avoid this by giving pip a helping hand and
nudging it to use a newer `numpy` version, which allows it to select a
newer `chex`. But it's easy to imagine similar issues in future with
other packages.
Closes#448.
The patch in google-research/t5x#1391 (
JAX-Toolbox/.github/container/manifest.yaml
Line 34 in 33a8cb3
jax.random.KeyArray
(https://github.com/google-research/t5x/blob/74d742f053dabbe594637ad1f481237a23065512/t5x/models.py#L643), which has been removed from JAX.The error is visible in the nightly runs, e.g. https://github.com/NVIDIA/JAX-Toolbox/actions/runs/7395920816.
The text was updated successfully, but these errors were encountered: