Skip to content

Commit

Permalink
Disable numpy -dev on Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
crusaderky committed Jan 31, 2025
1 parent e68d6b9 commit b74b6c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/array-api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# min version of dask we needs drops support for python 3.9
python-version: ${{ inputs.package-name == 'dask' && fromJson('[''3.10'', ''3.11'', ''3.12'']') || fromJson('[''3.9'', ''3.10'', ''3.11'', ''3.12'']') }}
# Min version of dask we need dropped support for Python 3.9
# There is no numpy git tip for Python 3.9
python-version: ${{ (inputs.package-name == 'dask' && fromJson('[''3.10'', ''3.11'', ''3.12'']')) || (inputs.package-name == 'numpy' && inputs.xfails-file-extra == '-dev' && fromJson('[''3.10'', ''3.11'', ''3.12'']')) || fromJson('[''3.9'', ''3.10'', ''3.11'', ''3.12'']') }}

steps:
- name: Checkout array-api-compat
Expand Down

0 comments on commit b74b6c0

Please sign in to comment.