File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 57
57
- name : Install dependencies
58
58
# NumPy 1.21 doesn't support Python 3.11. There doesn't seem to be a way
59
59
# to put this in the numpy 1.21 config file.
60
- if : " ! ((matrix.python-version == '3.11' && inputs.package-name == 'numpy' && contains(inputs.package-version, '1.21'))"
60
+ if : " ! ((( matrix.python-version == '3.11' || matrix.python-version == '3.12') && inputs.package-name == 'numpy' && contains(inputs.package-version, '1.21'))"
61
61
run : |
62
62
python -m pip install --upgrade pip
63
63
python -m pip install '${{ inputs.package-name }} ${{ inputs.package-version }}' ${{ inputs.extra-requires }}
Original file line number Diff line number Diff line change 10
10
exclude :
11
11
- python-version : ' 3.11'
12
12
numpy-version : ' 1.21'
13
+ - python-version : ' 3.12'
14
+ numpy-version : ' 1.21'
13
15
fail-fast : true
14
16
steps :
15
17
- uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments