Skip to content

Commit b97da20

Browse files
committed
Debug: install python and deps with uv
1 parent 73c0519 commit b97da20

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/httomolibgpu_tests_run_iris.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
image: nvidia/cuda:12.6.3-devel-ubi8
1515
env:
1616
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }}
17-
AGENT_TOOLSDIRECTORY: /home
1817

1918
defaults:
2019
run:
@@ -24,13 +23,15 @@ jobs:
2423
- name: Checkout repository code
2524
uses: actions/checkout@v4
2625

27-
- uses: actions/setup-python@v5
28-
with:
29-
python-version: '3.12.8'
26+
- name: Install uv
27+
uses: astral-sh/setup-uv@v4
28+
29+
- name: Setup python
30+
run: uv python install 3.12
3031

3132
- name: Install httomolibgpu
3233
run: |
33-
pip install .[dev]
34+
uv pip install .[dev]
3435
3536
- name: Run tests
3637
run: |

0 commit comments

Comments
 (0)