diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 5bc0d65..f667b7a 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -5,6 +5,8 @@ Changelog X.Y.Z (DD-MM-YYYY) ------------------ +* Allow arcae to vary in the 0.2.x range (:pr:`42`) +* Pin xarray to 2024.9.0 (:pr:`42`) * Add test case for irregular grids (:pr:`39`, :pr:`40`, :pr:`41`) * Rename MSv2PartitionEntryPoint to MSv2EntryPoint (:pr:`38`) * Move ``chunks`` kwarg functionality in MSv2PartitionEntryPoint.open_datatree diff --git a/pyproject.toml b/pyproject.toml index b6b5979..c29047a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,11 +8,11 @@ readme = "README.rst" [tool.poetry.dependencies] python = "^3.10" pytest = {version = "^8.0.0", optional = true, extras = ["testing"]} -xarray = "^2024.3.0" +xarray = "^2024.9.0, < 2024.10.0" dask = {version = "^2024.5.0", optional = true, extras = ["testing"]} distributed = {version = "^2024.5.0", optional = true, extras = ["testing"]} cacheout = "^0.16.0" -arcae = "^0.2.5" +arcae = "^0.2" typing-extensions = { version = "^4.12.2", python = "<3.11" } zarr = {version = "^2.18.3", optional = true, extras = ["testing"]}