diff --git a/.cruft.json b/.cruft.json index 52875aa..ccb4a10 100644 --- a/.cruft.json +++ b/.cruft.json @@ -12,7 +12,7 @@ "project_repo_name": "duck", "project_readthedocs_name": "duck", "project_short_description": "A Demo Web Service for Clint AI.", - "version": "0.1.0", + "version": "0.2.0", "open_source_license": "Apache Software License 2.0", "http_port": "5000", "use_pytest": "y", diff --git a/Dockerfile b/Dockerfile index 81f00a0..e15b7a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # vim:set ft=dockerfile: FROM continuumio/miniconda3 MAINTAINER https://github.com/cehbrecht/duck -LABEL Description="Duck WPS" Vendor="Birdhouse" Version="0.1.0" +LABEL Description="Duck WPS" Vendor="Birdhouse" Version="0.2.0" # Update Debian system RUN apt-get update && apt-get install -y \ diff --git a/duck/__version__.py b/duck/__version__.py index e4a49d3..6074fb1 100644 --- a/duck/__version__.py +++ b/duck/__version__.py @@ -6,4 +6,4 @@ __author__ = "Carsten Ehbrecht" __email__ = "ehbrecht@dkrz.de" -__version__ = "0.1.0" +__version__ = "0.2.0" diff --git a/setup.cfg b/setup.cfg index 22571e9..14152fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True @@ -23,7 +23,7 @@ universal = 1 [flake8] max-line-length = 120 -exclude = +exclude = .git, __pycache__, docs/source/conf.py, @@ -32,15 +32,14 @@ exclude = src, [aliases] -# Define setup.py command aliases here test = pytest [tool:pytest] -addopts = +addopts = --strict-markers --tb=native tests/ python_files = test_*.py -markers = +markers = online: mark test to need internet connection slow: mark test to be slow