From 2cdbac26c04009526dffc7586003043446326831 Mon Sep 17 00:00:00 2001 From: dcherian Date: Sun, 23 Feb 2020 17:17:54 -0800 Subject: [PATCH 1/2] pin msgpack --- ci/requirements/py36-min-all-deps.yml | 1 + ci/requirements/py36-min-nep18.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/ci/requirements/py36-min-all-deps.yml b/ci/requirements/py36-min-all-deps.yml index 2781e551f23..d349cb33c45 100644 --- a/ci/requirements/py36-min-all-deps.yml +++ b/ci/requirements/py36-min-all-deps.yml @@ -26,6 +26,7 @@ dependencies: - isort - lxml=4.4 # Optional dep of pydap - matplotlib=3.1 + - msgpack=0.6 # remove once distributed is bumped. distributed GH3491 - mypy=0.761 # Must match .pre-commit-config.yaml - nc-time-axis=1.2 - netcdf4=1.4 diff --git a/ci/requirements/py36-min-nep18.yml b/ci/requirements/py36-min-nep18.yml index 286b11c0de1..63599db4ada 100644 --- a/ci/requirements/py36-min-nep18.yml +++ b/ci/requirements/py36-min-nep18.yml @@ -8,6 +8,7 @@ dependencies: - coveralls - dask=2.4 - distributed=2.4 + - msgpack=0.6 # remove once distributed is bumped. distributed GH3491 - numpy=1.17 - pandas=0.25 - pint=0.9 # Actually not enough as it doesn't implement __array_function__yet! From 409ddc3a1651b0c0cc890219f666bbeadc086fbc Mon Sep 17 00:00:00 2001 From: dcherian Date: Sun, 23 Feb 2020 17:39:05 -0800 Subject: [PATCH 2/2] fix package name --- ci/requirements/py36-min-all-deps.yml | 2 +- ci/requirements/py36-min-nep18.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/requirements/py36-min-all-deps.yml b/ci/requirements/py36-min-all-deps.yml index d349cb33c45..86540197dcc 100644 --- a/ci/requirements/py36-min-all-deps.yml +++ b/ci/requirements/py36-min-all-deps.yml @@ -26,7 +26,7 @@ dependencies: - isort - lxml=4.4 # Optional dep of pydap - matplotlib=3.1 - - msgpack=0.6 # remove once distributed is bumped. distributed GH3491 + - msgpack-python=0.6 # remove once distributed is bumped. distributed GH3491 - mypy=0.761 # Must match .pre-commit-config.yaml - nc-time-axis=1.2 - netcdf4=1.4 diff --git a/ci/requirements/py36-min-nep18.yml b/ci/requirements/py36-min-nep18.yml index 63599db4ada..c10fdf67dc4 100644 --- a/ci/requirements/py36-min-nep18.yml +++ b/ci/requirements/py36-min-nep18.yml @@ -8,7 +8,7 @@ dependencies: - coveralls - dask=2.4 - distributed=2.4 - - msgpack=0.6 # remove once distributed is bumped. distributed GH3491 + - msgpack-python=0.6 # remove once distributed is bumped. distributed GH3491 - numpy=1.17 - pandas=0.25 - pint=0.9 # Actually not enough as it doesn't implement __array_function__yet!