File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 25
25
26
26
jobs :
27
27
test :
28
- name : ${{ matrix.os }} - Python ${{ matrix.python-version }}/ NumPy ${{ env.NUMPY-VERSION }}
28
+ name : ${{ matrix.os }} - Python ${{ matrix.python-version }} / NumPy ${{ matrix.numpy-version }}
29
29
runs-on : ${{ matrix.os }}
30
30
strategy :
31
31
fail-fast : false
41
41
isDraft : true
42
42
- os : windows-latest
43
43
isDraft : true
44
- - os : ubuntu-latest
45
- python-version : 3.7
46
- isDraft : true
44
+ # - os: ubuntu-latest
45
+ # python-version: 3.7
46
+ # isDraft: true
47
+ include :
48
+ # Pair Python 3.7 with NumPy 1.17 and Python 3.9 with NumPy 1.20
49
+ - python-version : 3.7
50
+ numpy-version : ' 1.17'
51
+ - python-version : 3.9
52
+ numpy-version : ' 1.20'
47
53
defaults :
48
54
run :
49
55
shell : bash -l {0}
52
58
env :
53
59
OS : ${{ matrix.os }}
54
60
PYTHON : ${{ matrix.python-version }}
55
- # Pair Python 3.7 with NumPy 1.17 and Python 3.9 with NumPy 1.20
56
- NUMPY-VERSION : ${{ matrix.python-version == '3.7' && '1.17' || '1.20' }}
57
61
58
62
steps :
59
63
# Cancel previous runs that are not completed
You can’t perform that action at this time.
0 commit comments