Skip to content

Commit 1cd4cf8

Browse files
committed
[ci] skip python 3.7/3.8 for blosc2, really really
1 parent adf9553 commit 1cd4cf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/run_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
run: |
3232
python -m unittest discover -v test
3333
- name: Codec benchmark
34-
if: matrix.python-version != '3.7' || matrix.python-version != '3.8' || matrix.python-version == '3.9'
34+
if: matrix.python-version != '3.7' && matrix.python-version != '3.8' && matrix.python-version == '3.9'
3535
run: |
3636
pip install "numpy<2.0" blosc2
3737
cd benchmark
3838
python -m benchcodecs
3939
- name: Codec benchmark
40-
if: matrix.python-version != '3.7' || matrix.python-version != '3.8' || matrix.python-version != '3.9'
40+
if: matrix.python-version != '3.7' && matrix.python-version != '3.8' && matrix.python-version != '3.9'
4141
run: |
4242
pip install blosc2
4343
cd benchmark

0 commit comments

Comments
 (0)