From 35227bcf9c5751a723b430b276dc68d6dbd4ec36 Mon Sep 17 00:00:00 2001 From: Alex Kerney Date: Sat, 14 Oct 2023 07:33:48 -0400 Subject: [PATCH] Anti-pin the latest version of Xarray to fix Zarr roundtrip tests (#238) * Anti-pin the latest version of Xarray to v2023.09.0 of Xarray caused our Zarr roundtrip tests to fail as times no longer matched. For full details see https://github.com/xpublish-community/xpublish/issues/237 The fix looks to have landed in https://github.com/pydata/xarray/pull/8272 and tests against the latest commit works, so we'll go with setting an pin to skip just v2023.09.0. Closes #237 * Dev requirements needs to mirror requirements due to --no-deps --- dev-requirements.txt | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index f177fde..3695fa7 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -16,5 +16,5 @@ pytest-cov requests toolz uvicorn -xarray +xarray!=v2023.09.0 # see https://github.com/xpublish-community/xpublish/issues/237 zarr diff --git a/requirements.txt b/requirements.txt index 4848997..2a4bf64 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ numpy pluggy toolz uvicorn -xarray +xarray!=v2023.09.0 # see https://github.com/xpublish-community/xpublish/issues/237 zarr