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 adf9553 commit 1cd4cf8Copy full SHA for 1cd4cf8
.github/workflows/run_test.yml
@@ -31,13 +31,13 @@ jobs:
31
run: |
32
python -m unittest discover -v test
33
- name: Codec benchmark
34
- if: matrix.python-version != '3.7' || matrix.python-version != '3.8' || matrix.python-version == '3.9'
+ if: matrix.python-version != '3.7' && matrix.python-version != '3.8' && matrix.python-version == '3.9'
35
36
pip install "numpy<2.0" blosc2
37
cd benchmark
38
python -m benchcodecs
39
40
- if: matrix.python-version != '3.7' || matrix.python-version != '3.8' || matrix.python-version != '3.9'
+ if: matrix.python-version != '3.7' && matrix.python-version != '3.8' && matrix.python-version != '3.9'
41
42
pip install blosc2
43
0 commit comments