Skip to content

Commit

Permalink
Replace resolved numpy workaround with dask workaround (#887)
Browse files Browse the repository at this point in the history
  • Loading branch information
glatterf42 authored Nov 11, 2024
1 parent 9d9f5bd commit afd7420
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ jobs:
(cd ixmp; pip install .[tests])
(cd message_ix; pip install .[tests])
# TEMPORARY Work around unionai-oss/pandera#1685;
# see https://github.com/khaeru/genno/issues/140
pip install "numpy < 2"
# TEMPORARY Work around dask v2024.11.0;
# see https://github.com/khaeru/genno/issues/149
pip install "dask < 2024.11.0"
- name: Run test suite using pytest
env:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
pip install --upgrade "ixmp @ git+https://github.com/iiasa/ixmp.git@main"
pip install .[tests]
# TEMPORARY Work around unionai-oss/pandera#1685;
# see https://github.com/khaeru/genno/issues/140
pip install "numpy < 2"
# TEMPORARY Work around dask v2024.11.0;
# see https://github.com/khaeru/genno/issues/149
pip install "dask < 2024.11.0"
- name: Run test suite using pytest
env:
Expand Down Expand Up @@ -170,9 +170,9 @@ jobs:
pip install --upgrade "ixmp @ git+https://github.com/iiasa/ixmp.git@main"
pip install .[tests]
# TEMPORARY Work around unionai-oss/pandera#1685;
# see https://github.com/khaeru/genno/issues/140
pip install "numpy < 2"
# TEMPORARY Work around dask v2024.11.0;
# see https://github.com/khaeru/genno/issues/149
pip install "dask < 2024.11.0"
- name: Install R dependencies and tutorial requirements
run: |
Expand Down

0 comments on commit afd7420

Please sign in to comment.