Skip to content

Commit afd7420

Browse files
authored
Replace resolved numpy workaround with dask workaround (#887)
1 parent 9d9f5bd commit afd7420

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/nightly.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
(cd ixmp; pip install .[tests])
6767
(cd message_ix; pip install .[tests])
6868
69-
# TEMPORARY Work around unionai-oss/pandera#1685;
70-
# see https://github.com/khaeru/genno/issues/140
71-
pip install "numpy < 2"
69+
# TEMPORARY Work around dask v2024.11.0;
70+
# see https://github.com/khaeru/genno/issues/149
71+
pip install "dask < 2024.11.0"
7272
7373
- name: Run test suite using pytest
7474
env:

.github/workflows/pytest.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ jobs:
8686
pip install --upgrade "ixmp @ git+https://github.com/iiasa/ixmp.git@main"
8787
pip install .[tests]
8888
89-
# TEMPORARY Work around unionai-oss/pandera#1685;
90-
# see https://github.com/khaeru/genno/issues/140
91-
pip install "numpy < 2"
89+
# TEMPORARY Work around dask v2024.11.0;
90+
# see https://github.com/khaeru/genno/issues/149
91+
pip install "dask < 2024.11.0"
9292
9393
- name: Run test suite using pytest
9494
env:
@@ -170,9 +170,9 @@ jobs:
170170
pip install --upgrade "ixmp @ git+https://github.com/iiasa/ixmp.git@main"
171171
pip install .[tests]
172172
173-
# TEMPORARY Work around unionai-oss/pandera#1685;
174-
# see https://github.com/khaeru/genno/issues/140
175-
pip install "numpy < 2"
173+
# TEMPORARY Work around dask v2024.11.0;
174+
# see https://github.com/khaeru/genno/issues/149
175+
pip install "dask < 2024.11.0"
176176
177177
- name: Install R dependencies and tutorial requirements
178178
run: |

0 commit comments

Comments
 (0)