File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 35
35
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
36
36
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
37
37
else
38
- python -m pip install 'numpy== ${{ matrix.numpy-version }}';
38
+ python -m pip install 'numpy>= ${{ matrix.numpy-version }},<${{ matrix.numpy-version }}.99 ';
39
39
fi
40
40
python -m pip install ${GITHUB_WORKSPACE}/array-api-strict
41
41
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt
Original file line number Diff line number Diff line change 19
19
if [[ "${{ matrix.numpy-version }}" == "dev" ]]; then
20
20
python -m pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy;
21
21
else
22
- python -m pip install 'numpy== ${{ matrix.numpy-version }}';
22
+ python -m pip install 'numpy>= ${{ matrix.numpy-version }},<${{ matrix.numpy-version }}.99 ';
23
23
fi
24
24
python -m pip install -r requirements-dev.txt
25
25
- name : Run Tests
You can’t perform that action at this time.
0 commit comments