From 375297b1934a619d768b0e5b9d270caf59f94697 Mon Sep 17 00:00:00 2001 From: Zeitsperre Date: Mon, 23 Sep 2019 15:18:57 -0400 Subject: [PATCH] Bumped version to v0.10.13-beta --- setup.cfg | 13 +++++++------ setup.py | 2 +- xclim/__init__.py | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/setup.cfg b/setup.cfg index de3a005ef..ba3127953 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,15 +1,15 @@ [bumpversion] -current_version = 0.10.12-beta +current_version = 0.10.13-beta commit = False tag = False parse = (?P\d+)\.(?P\d+).(?P\d+)(\-(?P[a-z]+))? -serialize = +serialize = {major}.{minor}.{patch}-{release} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = gamma -values = +values = beta gamma @@ -25,14 +25,14 @@ replace = __version__ = "{new_version}" universal = 1 [flake8] -exclude = +exclude = .git, docs, build, .eggs, max-line-length = 88 max-complexity = 12 -ignore = +ignore = C901 E203 E231 @@ -49,5 +49,6 @@ test = pytest [tool:pytest] collect_ignore = ["setup.py"] addopts = --verbose -filterwarnings = +filterwarnings = ignore::UserWarning + diff --git a/setup.py b/setup.py index 4f4c14f48..fdb96476e 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ AUTHOR = "Travis Logan" AUTHOR_EMAIL = "logan.travis@ouranos.ca" REQUIRES_PYTHON = ">=3.5.0" -VERSION = "0.10.12-beta" +VERSION = "0.10.13-beta" LICENSE = "Apache Software License 2.0" with open("README.rst") as readme_file: diff --git a/xclim/__init__.py b/xclim/__init__.py index 992856a4e..31ec1c167 100644 --- a/xclim/__init__.py +++ b/xclim/__init__.py @@ -9,7 +9,7 @@ __author__ = """Travis Logan""" __email__ = "logan.travis@ouranos.ca" -__version__ = "0.10.12-beta" +__version__ = "0.10.13-beta" def build_module(name, objs, doc="", source=None, mode="ignore"):