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

Upgrade to PyWPS 4.5.1 #218

Merged
merged 2 commits into from
Jan 13, 2022
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 @@ -22,7 +22,7 @@
"project_repo_name": "finch",
"project_readthedocs_name": "finch",
"project_short_description": "A Web Processing Service for Climate Indicators.",
"version": "0.7.6",
"version": "0.8.0",
"open_source_license": "Apache Software License 2.0",
"http_port": "5000",
"_copy_without_render": [
Expand Down
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
Changes
*******

0.8.0 (unreleased)
0.8.0 (2022-01-13)
==================
* Add ``hourly_to_daily`` process, converting hourly data to daily data using a reduction operation (sum, mean, max, min).
* Upgrade to clisops 0.8.0 to accelerate spatial averages over regions.
* Upgrade to xesmf 0.6.2 to fix spatial averaging bug not weighing correctly cells with varing areas.
* Update to PyWPS 4.5.1 to allow the creation of recursive directories for outputs.

Notes
-----
* Upgrading to birdy 0.8.1 will remove annoying warnings when accessing netCDF files from THREDDS.

0.7.7 (2021-11-16)
==================
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# vim:set ft=dockerfile:
FROM continuumio/miniconda3
MAINTAINER https://github.com/bird-house/finch
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.7.6"
LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.8.0"

# Update Debian system
RUN apt-get update && apt-get install -y \
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@
# the built documents.
#
# The short X.Y version.
version = "0.7.6"
version = "0.8.0"
# The full version, including alpha/beta/rc tags.
release = "0.7.6"
release = "0.8.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions environment-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ channels:
- conda-forge
- defaults
dependencies:
- pywps>=4.4.5
- pywps >= 4.5.1
- sphinx
- nbsphinx
- ipython
- xclim~=0.31
- matplotlib
- birdy >= 0.8.1
- birdy # >= 0.8.1 but pin fails because conda package seems to be tagged v0.8.1 instead of just 0.8.1.
huard marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies:
# remember to match xclim version in environment-docs.yml as well
- xclim == 0.31
- clisops >= 0.8.0
- pywps ==4.4.5
- pywps >= 4.5.1
- parse
- xesmf >= 0.6.2
- ESMpy <= 8.1.1 # Bug in ESMF 8.2 with spatial averaging.
2 changes: 1 addition & 1 deletion finch/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__author__ = """David Huard"""
__email__ = "[email protected]"
__version__ = '0.7.6'
__version__ = '0.8.0'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cftime
pywps==4.4.5
pywps >= 4.5.1
xclim==0.31
xarray>=0.18.2
pandas
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.6
current_version = 0.8.0
commit = True
tag = True

Expand Down