diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2abf4c2898..d390ed04a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,14 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install dependencies (Python 3.7) + if: matrix.python-version == '3.7' + run: | + python -m pip install --upgrade pip setuptools wheel + python -m pip install --find-links https://storage.googleapis.com/jax-releases/jax_releases.html --upgrade .[test] + - name: Install dependencies + if: matrix.python-version != '3.7' run: | python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade .[test]