Skip to content

Commit 1331bbd

Browse files
committed
Use pip instead of uv
1 parent 1bdd40c commit 1331bbd

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ jobs:
3838
with:
3939
fetch-depth: 0
4040

41-
- uses: astral-sh/setup-uv@v6
42-
4341
- name: Prepare mamba installation
4442
if: matrix.install-method == 'mamba' && contains(github.event.pull_request.labels.*.name, 'documentation-only') == false
4543
env:
@@ -55,17 +53,15 @@ jobs:
5553
environment-file: environment.yml
5654
cache-downloads: true
5755

58-
- uses: astral-sh/setup-uv@v6
59-
6056
- name: Install dependencies
6157
env:
6258
PYTHON_VERSION: ${{ matrix.python-version }}
6359
run: |
6460
python --version
65-
uv pip install --upgrade pip
66-
uv pip install --group tests -e .
67-
uv pip freeze
68-
uv pip list
61+
pip install --upgrade pip
62+
pip install --group tests -e .
63+
pip freeze
64+
pip list
6965
7066
- name: List installed package versions (conda)
7167
if: matrix.environment-type == 'mamba'

0 commit comments

Comments
 (0)