From 0a08a215d1ff8f112cb8e929bceefd6fcd4c85be Mon Sep 17 00:00:00 2001 From: Pingu Carsti Date: Wed, 6 Jun 2018 17:51:16 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.0=20=E2=86=92=200.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- docs/source/conf.py | 2 +- emu/__init__.py | 2 +- setup.cfg | 35 ++++++++++++++++++----------------- 4 files changed, 21 insertions(+), 20 deletions(-) diff --git a/Dockerfile b/Dockerfile index d68f06b..beb9493 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.7.0" +LABEL Description="Emu: Demo PyWPS" Vendor="Birdhouse" Version="0.8.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 0c482dc..e3fde38 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -68,7 +68,7 @@ # The short X.Y version. version = '' # The full version, including alpha/beta/rc tags. -release = '0.7.0' +release = '0.8.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/emu/__init__.py b/emu/__init__.py index b213dd2..b3ae0fa 100644 --- a/emu/__init__.py +++ b/emu/__init__.py @@ -1,3 +1,3 @@ from .wsgi import application -__version__ = '0.7.0' +__version__ = '0.8.0' diff --git a/setup.cfg b/setup.cfg index 3e4dc30..e11dfda 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.8.0 commit = True tag = True @@ -19,26 +19,27 @@ search = Version="{current_version}" replace = Version="{new_version}" [tool:pytest] -addopts = - --strict - --tb=native - tests/ +addopts = + --strict + --tb=native + tests/ python_files = test_*.py -markers = - online: mark test to need internet connection - slow: mark test to be slow +markers = + online: mark test to need internet connection + slow: mark test to be slow [flake8] -ignore=F401,E402 -max-line-length=120 -exclude = - .git, - __pycache__, - docs/source/conf.py, - build, - dist, - src, +ignore = F401,E402 +max-line-length = 120 +exclude = + .git, + __pycache__, + docs/source/conf.py, + build, + dist, + src, [doc8] ignore-path = docs/build,docs/source/_templates,docs/source/_static max-line-length = 120 +