Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit f5c1982

Browse files
committed
Revert "split tool install from pip install"
This reverts commit abf0d19.
1 parent abf0d19 commit f5c1982

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/run-server-tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,17 @@ jobs:
1515
- name: Set up Python 3.11
1616
run: uv python install
1717
- name: Install dependencies
18+
env:
19+
UV_SYSTEM_PYTHON: 1
1820
run: |
1921
uv tool install git-annex
2022
uv tool install datalad
23+
if [ -f requirements-devel.txt ]; then uv pip install -r requirements-devel.txt; fi
2124
echo which git-annex
2225
which git-annex
2326
echo which datalad
2427
which datalad
2528
datalad --version
26-
- name: Install more dependencies
27-
env:
28-
UV_SYSTEM_PYTHON: 1
29-
run:
30-
if [ -f requirements-devel.txt ]; then uv pip install -r requirements-devel.txt; fi
3129
- name: Lint with flake8
3230
run: |
3331
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)