Skip to content

Commit

Permalink
Release 0.3.0 preparations (#43)
Browse files Browse the repository at this point in the history
* Bump version, update README

* Add py3.12 to CI
  • Loading branch information
BSchilperoort authored Sep 5, 2024
1 parent 524c1c8 commit 8bdc636
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
env:
MPLBACKEND: Agg # https://github.com/orgs/community/discussions/26434
steps:
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## Unreleased

# 0.3.0 (2024-09-05)

New contributors:
- @slevang
- [@slevang](https://github.com/slevang)

Fixed:
- conservative regridding now can be constructed fully lazily [#39](https://github.com/EXCITED-CO2/xarray-regrid/pull/39).
Expand All @@ -20,7 +22,7 @@ Added:
## v0.2.3 (2024-02-29)

New contributors:
- @kjdoore
- [@kjdoore](https://github.com/kjdoore)

Fixed:
- Ensure all attributes are kept upon regridding (dataset, variable and coordinate attrs) ([#27](https://github.com/EXCITED-CO2/xarray-regrid/pull/27)).
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ With xarray-regrid it is possible to regrid between two rectilinear grids. The f
- Cubic
- "Most common value" (zonal statistics)

All regridding methods, except for the "most common value" can operate lazily on [Dask arrays](https://docs.xarray.dev/en/latest/user-guide/dask.html).

Note that "Most common value" is designed to regrid categorical data to a coarse resolution. For regridding categorical data to a finer resolution, please use "nearest-neighbor" regridder.

[![PyPI](https://img.shields.io/pypi/v/xarray-regrid.svg?style=flat)](https://pypi.python.org/pypi/xarray-regrid/)
Expand Down
2 changes: 1 addition & 1 deletion src/xarray_regrid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"methods",
]

__version__ = "0.2.3"
__version__ = "0.3.0"

0 comments on commit 8bdc636

Please sign in to comment.