Skip to content

Commit

Permalink
Pin chex version in GPU CI (#346)
Browse files Browse the repository at this point in the history
* Pin `chex` version

* Fix typo
  • Loading branch information
michalk8 committed Mar 29, 2023
1 parent 9e709f7 commit 1feb317
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,12 @@ jobs:

- name: Install dependencies
# `jax[cuda]<0.4` because of Docker issues: https://github.com/google/jax/issues/13758
# `chex<0.1.7` because it requires `jax>=0.4.6`
# `flax<0.6.5` because it requires `jax>=0.4.2`
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e".[test]"
python3 -m pip install "flax<0.6.5"
python3 -m pip install "flax<0.6.5" "chex<0.1.7"
python3 -m pip install "jax[cuda]<0.4" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
- name: Nvidia SMI
Expand Down

0 comments on commit 1feb317

Please sign in to comment.