We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8fdea3 commit 33af688Copy full SHA for 33af688
1 file changed
.github/workflows/deploy.yml
@@ -32,14 +32,18 @@ jobs:
32
# Begin copy from ci.yml. Refactor?
33
34
- name: Set up Python
35
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
36
with:
37
python-version: '3.11'
38
39
- - name: Install zarrita
+ - name: Install uv
40
+ uses: astral-sh/setup-uv@v6
41
+
42
+ - name: Set up zarr-python
43
run: |
- python -m venv venv_zarrita
- 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
47
48
- name: Download testdata
49
0 commit comments