Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v0.14.1 #364

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
name: Python${{ matrix.python-version }} (PyPI + Tox)
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 20
strategy:
matrix:
include:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
name: Python${{ matrix.python-version }} (Anaconda, upstream=${{ matrix.upstream }})
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 60
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
Expand Down
10 changes: 8 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Version History
===============

v0.14.1 (unreleased)
v0.14.1 (2024-11-05)
--------------------

New Features
^^^^^^^^^^^^
* Added new methods to `clisops.core.regrid.Grid`
* Added possibility to apply land or ocean mask if present in the file
* Adapted method from ESMF to detect smashed cells
* Adapted method from `ESMF` to detect smashed cells
* Masking degenerate (i.e. collapsed and smashed) cells
* Dropping lat/lon bounds if an integrity check fails
* Added a few attributes to the `Grid` object
Expand Down Expand Up @@ -42,6 +42,12 @@ Breaking Changes
* `clisops.ops.regrid`
* `Regrid._calculate`: issues `UserWarning` instead of letting `clisops.core.Weights.__init__` raise an `Exception` when input and output grid are alike

Other Changes
^^^^^^^^^^^^^
* The testing suite has been refactored to make better use of context handlers when opening files with `xarray`, preventing synonymous read errors and improving the overall performance of the tests.
* Several tests that were failing due to significantly long runtimes have been marked as `slow` and are now skipped by default.
* GitHub Workflows now use a timeout of 20 minutes for the build suite to prevent hanging builds.

v0.14.0 (2024-10-03)
--------------------

Expand Down