Skip to content
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
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"project_repo_name": "rook",
"project_readthedocs_name": "rook",
"project_short_description": "A WPS service for roocs.",
"version": "0.17.2",
"version": "0.18.0",
"open_source_license": "Apache Software License 2.0",
"http_port": "5000",
"use_pytest": "y",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changes
*******

0.18.0 (2025-12-19)
===================

* Updated `clisops >=0.17.0`, `daops >=0.16.0`` and `pywps >=4.7` (#284).
* Updated regrid operator (#283).

0.17.2 (2025-05-08)
===================

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM condaforge/mambaforge
ARG DEBIAN_FRONTEND=noninteractive
ENV PIP_ROOT_USER_ACTION=ignore
LABEL org.opencontainers.image.authors="https://github.com/roocs/rook"
LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.17.2"
LABEL Description="rook WPS" Vendor="Birdhouse" Version="0.18.0"

# Set the working directory to /code
WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ target-version = [


[tool.bumpversion]
current_version = "0.17.2"
current_version = "0.18.0"
commit = true
commit_args = "--no-verify"
tag = true
Expand Down
592 changes: 314 additions & 278 deletions spec-list.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/rook/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__author__ = """Carsten Ehbrecht"""
__email__ = "ehbrecht@dkrz.de"
__version__ = "0.17.2"
__version__ = "0.18.0"
3 changes: 2 additions & 1 deletion tests/smoke/test_smoke_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def test_smoke_execute_c3s_cmip6_regrid(wps):
urls = wps.execute("regrid", inputs)
assert len(urls) == 1
assert (
"rlds_Amon_INM-CM5-0_ssp245_r1i1p1f1_gr_20150116-21001216_regrid-nearest_s2d-120x179_cells_grid.nc"
"rlds_Amon_INM-CM5-0_ssp245_r1i1p1f1_gr_20150116-21001216_regrid-nearest_s2d-120x180_cells_grid.nc"
in urls[0]
)

Expand Down Expand Up @@ -664,6 +664,7 @@ def test_smoke_execute_c3s_cordex_orchestrate(wps):
)


@pytest.mark.xfail(reason="issue with datatime and xarray+dask")
def test_smoke_execute_c3s_cmip6_decadal_orchestrate(wps):
inputs = [
("workflow", ComplexDataInput(WF_C3S_CMIP6_DECADAL)),
Expand Down
Loading