Skip to content

Commit

Permalink
use uv to install deps in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Mar 9, 2024
1 parent 1c6ad20 commit 81975c0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
cache: pip
cache-dependency-path: pyproject.toml

- name: Install uv
run: pip install uv

- uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -43,7 +46,7 @@ jobs:
run: conda install -c conda-forge openbabel

- name: Install dependencies
run: pip install '.[dev]'
run: uv pip install '.[dev]' --system

- name: pytest
env:
Expand Down

0 comments on commit 81975c0

Please sign in to comment.