From c7542dce45e71360714c16f030449c740f9ea92c Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Mon, 13 May 2024 09:58:18 -0600 Subject: [PATCH] Depend on latest version of xarray (#109) * depend on xarray>=v2024.5.0 * remove note about needing special branch of xarray --- docs/installation.md | 2 -- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 1ee513fe..16fd417b 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -8,8 +8,6 @@ cd VirtualiZarr pip install -e . ``` -You will also need a specific branch of xarray in order for concatenation without indexes to work. (See [this comment](https://github.com/TomNicholas/VirtualiZarr/issues/14#issuecomment-2018369470).) - ## Install Test Dependencies diff --git a/pyproject.toml b/pyproject.toml index 24294f48..57aa46f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ requires-python = ">=3.9" dynamic = ["version"] dependencies = [ - "xarray@git+https://github.com/pydata/xarray.git@main#egg=xarray", + "xarray>=2024.5.0", "kerchunk>=0.2.5", "h5netcdf", "pydantic",