We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f932b4 commit d4411c7Copy full SHA for d4411c7
1 file changed
.github/workflows/test.yml
@@ -62,10 +62,10 @@ jobs:
62
run: |
63
python -m pip install --upgrade pip
64
pip install "numpy==${{ matrix.numpy-version }}"
65
- if [ "${{ matrix.jax-version }}" != "latest" ]; then
66
- pip install "jax==${{ matrix.jax-version }}" "jaxlib==${{ matrix.jax-version }}"
67
- fi
68
- pip install -e ".[dev]"
+ if [ "${{ matrix.jax-version }}" != "latest" ]; then
+ pip install "jax==${{ matrix.jax-version }}" "jaxlib==${{ matrix.jax-version }}" "numpy==${{ matrix.numpy-version }}"
+ fi
+ pip install -e ".[dev]" "numpy==${{ matrix.numpy-version }}"
69
70
shell: bash
71
0 commit comments