From 46f769fcab1ced42577e5a68ff4f255cb6053266 Mon Sep 17 00:00:00 2001 From: Paul Haesler Date: Mon, 6 Feb 2023 15:06:28 +1100 Subject: [PATCH] For release 1.8.11 (#1398) * Update conda-environment.yml to match setup.py * Update whats_new.rst ready for 1.8.11 release. * Conda baulking on shapely>=2.0 Trying shapely>=2.0.0 * ci(fix): conda build --------- Co-authored-by: Damien Ayers --- .github/workflows/test-conda-build.yml | 1 - conda-environment.yml | 7 ++++--- docs/about/whats_new.rst | 6 ++++++ 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-conda-build.yml b/.github/workflows/test-conda-build.yml index fc7028e83a..5ff16a4a48 100644 --- a/.github/workflows/test-conda-build.yml +++ b/.github/workflows/test-conda-build.yml @@ -35,7 +35,6 @@ jobs: environment-file: conda-environment.yml auto-update-conda: true python-version: ${{ matrix.python-version}} - use-only-tar-bz2: true # Used for cache - name: Bash shell: bash -l {0} diff --git a/conda-environment.yml b/conda-environment.yml index f85a42118d..960faf44b1 100644 --- a/conda-environment.yml +++ b/conda-environment.yml @@ -13,14 +13,15 @@ dependencies: - sphinx-click - click - affine + - attrs >=18.1 - botocore - boto3 - cachetools - - click + - click>=5.0 - cloudpickle >=0.4.0 - dask - - pyproj - - shapely + - pyproj >=2.5 + - shapely >=2.0 - jsonschema - lark - netcdf4 diff --git a/docs/about/whats_new.rst b/docs/about/whats_new.rst index 3878550e88..a2b610d8d2 100644 --- a/docs/about/whats_new.rst +++ b/docs/about/whats_new.rst @@ -8,11 +8,17 @@ What's New v1.8.next ========= + +v1.8.11 (6 February 2023) +========================= + +- Simplify Github actions (:pull:`1393`) - Update conda create environment README (:pull:`1394`) - Update conda environment file and add notes to release process to ensure pip and conda dependencies are in sync and up-to-date. (:pull:`1395`) - Update docker constraints (:pull:`1396`) - Compatible with the changes w.r.t. `MultiIndex` and `coord/dims` introduced since `xarray>2022.3.0` (:pull:`1397`) +- Final sync of conda/pip dependencies and release notes. (:pull:`1398`) v1.8.10 (30 January 2023)