From 4157c920fb2b6ac6ecf9737cdab7a55cd3a5b366 Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Tue, 26 Mar 2024 11:38:18 +0100 Subject: [PATCH] Install dask[dataframe] where needed in pytest CI workflow --- .github/workflows/pytest.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index ee4750452d..67afce5199 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -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