We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5674738 commit 34c1ad8Copy full SHA for 34c1ad8
.github/workflows/run_test.yml
@@ -31,8 +31,15 @@ jobs:
31
run: |
32
python -m unittest discover -v test
33
- name: Codec benchmark
34
+ if: matrix.python-version == '3.9'
35
- pip install --upgrade --no-cache-dir blosc2
36
+ pip install "numpy<2.0" blosc2
37
+ cd benchmark
38
+ python -m benchcodecs
39
+ - name: Codec benchmark
40
+ if: matrix.python-version != '3.9'
41
+ run: |
42
+ pip install blosc2
43
cd benchmark
44
python -m benchcodecs
45
- name: NIfTI file loading benchmark
0 commit comments