File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 3030 test :
3131 runs-on : ${{ matrix.os }}
3232 timeout-minutes : 20
33- continue-on-error : ${{ matrix.zmq == 'head' }}
33+ continue-on-error : ${{ matrix.zmq == 'head' || matrix.python == '3.14' }}
3434
3535 env :
3636 MACOSX_DEPLOYMENT_TARGET : " 13.7"
@@ -127,6 +127,7 @@ jobs:
127127 # need prerelease Cython until 3.1 is out
128128 echo "PIP_PRE=1" >> "$GITHUB_ENV"
129129 echo "PIP_EXTRA_INDEX_URL=https://pypi.anaconda.org/scientific-python-nightly-wheels/simple" >> "$GITHUB_ENV"
130+ echo "EXTRA_PIP=--no-binary coverage" >> "$GITHUB_ENV"
130131
131132 - name : setup coverage
132133 if : startsWith(matrix.python, 'pypy') || startsWith(matrix.python, '3.14')
@@ -142,7 +143,7 @@ jobs:
142143 - name : install dependencies
143144 run : |
144145 pip install --upgrade pip wheel
145- pip install -r test-requirements.txt
146+ pip install ${EXTRA_PIP:-} -r test-requirements.txt
146147
147148 - name : remove tornado
148149 if : matrix.tornado == 'none'
You can’t perform that action at this time.
0 commit comments