From 8ac6273aa5924c2120481f765ca57a8f4b933c0a Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Wed, 23 Aug 2023 12:34:18 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.11.2=20=E2=86=92=200.11.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- Dockerfile | 2 +- docs/source/conf.py | 4 ++-- finch/__version__.py | 2 +- setup.cfg | 16 ++++++++-------- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.cruft.json b/.cruft.json index dd0c7dff..b857281a 100644 --- a/.cruft.json +++ b/.cruft.json @@ -22,7 +22,7 @@ "project_repo_name": "finch", "project_readthedocs_name": "finch", "project_short_description": "A Web Processing Service for Climate Indicators.", - "version": "0.11.2", + "version": "0.11.3", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "_copy_without_render": [ diff --git a/Dockerfile b/Dockerfile index 50fc9874..838421cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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/bird-house/finch" -LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.11.2" +LABEL Description="Finch WPS" Vendor="Birdhouse" Version="0.11.3" # Switch to /code directory WORKDIR /code diff --git a/docs/source/conf.py b/docs/source/conf.py index bd191d34..609abf11 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -136,9 +136,9 @@ # the built documents. # # The short X.Y version. -version = "0.11.2" +version = "0.11.3" # The full version, including alpha/beta/rc tags. -release = "0.11.2" +release = "0.11.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/finch/__version__.py b/finch/__version__.py index 2785c9ff..be188db9 100644 --- a/finch/__version__.py +++ b/finch/__version__.py @@ -5,4 +5,4 @@ __author__ = """David Huard""" __email__ = "huard.david@ouranos.ca" -__version__ = "0.11.2" +__version__ = "0.11.3" diff --git a/setup.cfg b/setup.cfg index a9f5bd63..46f4214e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.2 +current_version = 0.11.3 commit = True tag = False @@ -23,18 +23,18 @@ replace = "version": "{new_version}", universal = 1 [tool:pytest] -addopts = +addopts = --strict --tb=native python_files = test_*.py -markers = +markers = online: mark test to need internet connection slow: mark test to be slow [flake8] ignore = F401,E402,E203,W503 max-line-length = 120 -exclude = +exclude = .git __pycache__ docs/source/conf.py @@ -42,10 +42,10 @@ exclude = dist src tests -rst-directives = +rst-directives = bibliography autolink-skip -rst-roles = +rst-roles = doc mod py:attr @@ -64,7 +64,7 @@ rst-roles = cite:p cite:t cite:ts -extend-ignore = +extend-ignore = RST399 RST201 RST203 @@ -75,7 +75,7 @@ extend-ignore = [pycodestyle] count = False exclude = docs/source/conf.py -ignore = +ignore = E226 E402 E501