Skip to content

Commit

Permalink
Install dask[dataframe] where needed in pytest CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Mar 26, 2024
1 parent e7b19c5 commit 4157c92
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
- { os: windows-latest }
# Versions of both ixmp and message_ix to use plus latest supported python version
upstream:
- { python-version: "3.11", version: v3.4.0, extra-deps: '"genno < 1.25" "pandas < 2.0"' } # Minimum version given in pyproject.toml
- { python-version: "3.11", version: v3.5.0, extra-deps: '"genno < 1.25" "pandas < 2.0"' }
- { python-version: "3.11", version: v3.6.0, extra-deps: '"genno < 1.25" "pandas < 2.0"' }
- { python-version: "3.11", version: v3.7.0, extra-deps: '"genno < 1.25" ' }
- { python-version: "3.12", version: v3.8.0, extra-deps: '' } # Latest released version
- { python-version: "3.12", version: main, extra-deps: '' } # Development version
- { python-version: "3.11", version: v3.4.0, extra-deps: '"dask < 2024.3.0" "genno < 1.25" "pandas < 2.0"' } # Minimum version given in pyproject.toml
- { python-version: "3.11", version: v3.5.0, extra-deps: '"dask < 2024.3.0" "genno < 1.25" "pandas < 2.0"' }
- { python-version: "3.11", version: v3.6.0, extra-deps: '"dask < 2024.3.0" "genno < 1.25" "pandas < 2.0"' }
- { python-version: "3.11", version: v3.7.0, extra-deps: 'dask[dataframe] "genno < 1.25" ' }
- { python-version: "3.12", version: v3.8.0, extra-deps: 'dask[dataframe]' } # Latest released version
- { python-version: "3.12", version: main, extra-deps: 'dask[dataframe]' } # Development version

fail-fast: false

Expand Down

0 comments on commit 4157c92

Please sign in to comment.