Skip to content

Commit 33af688

Browse files
committed
update deploy.yml
1 parent e8fdea3 commit 33af688

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,18 @@ jobs:
3232
# Begin copy from ci.yml. Refactor?
3333

3434
- name: Set up Python
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: '3.11'
3838

39-
- name: Install zarrita
39+
- name: Install uv
40+
uses: astral-sh/setup-uv@v6
41+
42+
- name: Set up zarr-python
4043
run: |
41-
python -m venv venv_zarrita
42-
if [ "${{ runner.os }}" = "Windows" ]; then venv_zarrita/Scripts/pip install zarrita; else venv_zarrita/bin/pip install zarrita; fi
44+
uv venv && uv init
45+
uv add zarr
46+
uv add zarrita
4347
4448
- name: Download testdata
4549
run: |

0 commit comments

Comments
 (0)