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 30
30
test :
31
31
runs-on : ${{ matrix.os }}
32
32
timeout-minutes : 20
33
- continue-on-error : ${{ matrix.zmq == 'head' }}
33
+ continue-on-error : ${{ matrix.zmq == 'head' || matrix.python == '3.14' }}
34
34
35
35
env :
36
36
MACOSX_DEPLOYMENT_TARGET : " 13.7"
@@ -127,6 +127,7 @@ jobs:
127
127
# need prerelease Cython until 3.1 is out
128
128
echo "PIP_PRE=1" >> "$GITHUB_ENV"
129
129
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"
130
131
131
132
- name : setup coverage
132
133
if : startsWith(matrix.python, 'pypy') || startsWith(matrix.python, '3.14')
@@ -142,7 +143,7 @@ jobs:
142
143
- name : install dependencies
143
144
run : |
144
145
pip install --upgrade pip wheel
145
- pip install -r test-requirements.txt
146
+ pip install ${EXTRA_PIP:-} -r test-requirements.txt
146
147
147
148
- name : remove tornado
148
149
if : matrix.tornado == 'none'
You can’t perform that action at this time.
0 commit comments