Skip to content

Commit b91cc04

Browse files
committed
Fix bash syntax
1 parent 083023c commit b91cc04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/array-api-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
3636
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
3737
else
38-
python -m pip install numpy<2.0;
38+
python -m pip install 'numpy<2.0';
3939
fi
4040
- name: Run the array API testsuite
4141
env:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
2323
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
2424
else
25-
python -m pip install numpy<2.0;
25+
python -m pip install 'numpy<2.0';
2626
fi
2727
- name: Run Tests
2828
run: |

0 commit comments

Comments
 (0)