From e8d9762eff35fd940023e8523d2c9a076843da64 Mon Sep 17 00:00:00 2001 From: Pingu Carsti Date: Wed, 5 Dec 2018 17:43:39 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- docs/source/conf.py | 2 +- hummingbird/__version__.py | 2 +- setup.cfg | 9 +++++---- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9ecd20c..a17ca08 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # vim:set ft=dockerfile: FROM continuumio/miniconda3 MAINTAINER https://github.com/bird-house/hummingbird -LABEL Description="Hummingbird WPS" Vendor="Birdhouse" Version="0.6.0" +LABEL Description="Hummingbird WPS" Vendor="Birdhouse" Version="0.6.1" # Update Debian system RUN apt-get update && apt-get install -y \ diff --git a/docs/source/conf.py b/docs/source/conf.py index b96dc4b..4fd27e5 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ # The short X.Y version. version = '' # The full version, including alpha/beta/rc tags. -release = '0.6.0' +release = '0.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hummingbird/__version__.py b/hummingbird/__version__.py index 11b3216..7e34f10 100644 --- a/hummingbird/__version__.py +++ b/hummingbird/__version__.py @@ -6,4 +6,4 @@ __author__ = """Carsten Ehbrecht""" __email__ = 'ehbrecht@dkrz.de' -__version__ = '0.6.0' +__version__ = '0.6.1' diff --git a/setup.cfg b/setup.cfg index c72d02b..6da9786 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True @@ -19,19 +19,19 @@ search = Version="{current_version}" replace = Version="{new_version}" [tool:pytest] -addopts = +addopts = --strict --tb=native tests/ python_files = test_*.py -markers = +markers = online: mark test to need internet connection slow: mark test to be slow [flake8] ignore = F401,E402 max-line-length = 120 -exclude = +exclude = .git, __pycache__, docs/source/conf.py, @@ -42,3 +42,4 @@ exclude = [doc8] ignore-path = docs/build,docs/source/_templates,docs/source/_static max-line-length = 120 +