File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ jobs:
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' || matrix.python-version == '3.12') && 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 }}
64
64
python -m pip install -r ${GITHUB_WORKSPACE}/array-api-tests/requirements.txt
65
65
- name : Run the array API testsuite (${{ inputs.package-name }})
66
- if : " ! ((matrix.python-version == '3.11' && inputs.package-name == 'numpy' && contains(inputs.package-version, '1.21'))"
66
+ if : " ! ((matrix.python-version == '3.11' || matrix.python-version == '3.12') && inputs.package-name == 'numpy' && contains(inputs.package-version, '1.21'))"
67
67
env :
68
68
ARRAY_API_TESTS_MODULE : array_api_compat.${{ inputs.module-name || inputs.package-name }}
69
69
# This enables the NEP 50 type promotion behavior (without it a lot of
You can’t perform that action at this time.
0 commit comments