Skip to content

Commit 8bdc636

Browse files
Release 0.3.0 preparations (#43)
* Bump version, update README * Add py3.12 to CI
1 parent 524c1c8 commit 8bdc636

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/build_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
19-
python-version: ['3.10', '3.11']
19+
python-version: ['3.10', '3.11', '3.12']
2020
env:
2121
MPLBACKEND: Agg # https://github.com/orgs/community/discussions/26434
2222
steps:

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
66

77
## Unreleased
88

9+
# 0.3.0 (2024-09-05)
10+
911
New contributors:
10-
- @slevang
12+
- [@slevang](https://github.com/slevang)
1113

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

2224
New contributors:
23-
- @kjdoore
25+
- [@kjdoore](https://github.com/kjdoore)
2426

2527
Fixed:
2628
- Ensure all attributes are kept upon regridding (dataset, variable and coordinate attrs) ([#27](https://github.com/EXCITED-CO2/xarray-regrid/pull/27)).

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ With xarray-regrid it is possible to regrid between two rectilinear grids. The f
1010
- Cubic
1111
- "Most common value" (zonal statistics)
1212

13+
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).
14+
1315
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.
1416

1517
[![PyPI](https://img.shields.io/pypi/v/xarray-regrid.svg?style=flat)](https://pypi.python.org/pypi/xarray-regrid/)

src/xarray_regrid/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
"methods",
1010
]
1111

12-
__version__ = "0.2.3"
12+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)