We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3416dd2 commit 8147d88Copy full SHA for 8147d88
1 file changed
.github/workflows/ci.yaml
@@ -107,9 +107,9 @@ jobs:
107
- name: Install numcodecs
108
run: |
109
if [[ -n "${{ matrix.extras }}" ]]; then
110
- python -m pip install -v ".[${{ matrix.extras }},test]"
+ python -m pip install -v -e ".[${{ matrix.extras }},test]"
111
else
112
- python -m pip install -v ".[test]"
+ python -m pip install -v -e ".[test]"
113
fi
114
115
- name: List installed packages
@@ -160,7 +160,7 @@ jobs:
160
161
- name: Install numcodecs and Zarr
162
163
- python -m pip install -v ".[test,test_extras]"
+ python -m pip install -v -e ".[test,test_extras]"
164
python -m pip install "${{ matrix.zarr-pkg }}" crc32c
165
166
0 commit comments