Skip to content

Commit

Permalink
Merge pull request #207 from Ouranosinc/hotfix
Browse files Browse the repository at this point in the history
Fix buggy merge
  • Loading branch information
richardarsenault authored Mar 10, 2020
2 parents 2d83c8f + e14992b commit cf72dfc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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/huard/raven
LABEL Description="Raven WPS" Vendor="Birdhouse" Version="0.10.0-beta"
LABEL Description="Raven WPS" Vendor="Birdhouse" Version="0.10.0"

# Update Debian system
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
# The short X.Y version.
version = ''
# The full version, including alpha/beta/rc tags.
release = '0.10.0-beta'
release = '0.10.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion raven/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

__author__ = """David Huard"""
__email__ = '[email protected]'
__version__ = '0.10.0-beta'
__version__ = '0.10.0'

if 'DO_NOT_CHECK_EXECUTABLE_EXISTENCE' not in os.environ:
raven_exec = Path(__file__).parent.parent / 'bin' / 'raven'
Expand Down
2 changes: 1 addition & 1 deletion raven/processes/wps_raven_gr4j_cemaneige.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ class RavenGR4JCemaNeigeProcess(RavenProcess):
tuple_inputs = {'params': GR4JCN.params}

inputs = [wio.ts, wio.nc_spec, params, wio.start_date, wio.end_date, wio.nc_index, wio.duration, wio.run_name,
wio.name, wio.area, wio.latitude, wio.longitude, wio.elevation, wio.nc_index, wio.evaporation,
wio.name, wio.area, wio.latitude, wio.longitude, wio.elevation, wio.evaporation,
wio.rain_snow_fraction]
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.10.0-beta
current_version = 0.10.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down

0 comments on commit cf72dfc

Please sign in to comment.