diff --git a/Dockerfile b/Dockerfile index 53aaeb2..641b106 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # vim:set ft=dockerfile: FROM continuumio/miniconda3 MAINTAINER https://github.com/bird-house/emu -LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.9.1" +LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.10.0" # Update Debian system RUN apt-get update && apt-get install -y \ diff --git a/docs/source/conf.py b/docs/source/conf.py index 07d26c0..fea8aca 100644 --- 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.9.1' +release = '0.10.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/emu/__version__.py b/emu/__version__.py index 5354520..165ad53 100644 --- a/emu/__version__.py +++ b/emu/__version__.py @@ -6,4 +6,4 @@ __author__ = """Carsten Ehbrecht""" __email__ = 'ehbrecht@dkrz.de' -__version__ = '0.9.1' +__version__ = '0.10.0' diff --git a/setup.cfg b/setup.cfg index a269ca7..9b4d4bd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.10.0 commit = True tag = True @@ -19,18 +19,18 @@ search = Version="{current_version}" replace = Version="{new_version}" [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 max-line-length = 120 -exclude = +exclude = .git, __pycache__, docs/source/conf.py, @@ -41,3 +41,4 @@ exclude = [doc8] ignore-path = docs/build,docs/source/_templates,docs/source/_static max-line-length = 120 +