Skip to content

Commit

Permalink
change selection critiera
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed May 30, 2024
1 parent b948c93 commit e0cdbd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
if: matrix.python-version > '3.8'
if: matrix.python-version != '3.7' && matrix.python-version != '3.8'
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade ".[all,test]"
# c.f. https://github.com/astral-sh/uv/issues/2062
- name: Install dependencies (Python 3.7, 3.8)
if: matrix.python-version <= '3.8'
if: matrix.python-version == '3.7' || matrix.python-version == '3.8'
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 ".[all,test]"
Expand Down

0 comments on commit e0cdbd4

Please sign in to comment.