From 9b5d4907157b2af4439f180a87bcbb8f898a8666 Mon Sep 17 00:00:00 2001 From: ellesmith88 Date: Thu, 13 Jan 2022 10:14:23 +0000 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 --- clisops/__version__.py | 2 +- docs/conf.py | 2 +- setup.cfg | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/clisops/__version__.py b/clisops/__version__.py index b86e6808..ec28529d 100644 --- a/clisops/__version__.py +++ b/clisops/__version__.py @@ -5,4 +5,4 @@ __author__ = "Elle Smith" __email__ = "eleanor.smith@stfc.ac.uk" -__version__ = "0.7.0" +__version__ = "0.8.0" diff --git a/docs/conf.py b/docs/conf.py index 93b46bcd..72d8953a 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,7 +75,7 @@ # the built documents. # # The short X.Y version. -version = "0.7.0" +version = "0.8.0" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.cfg b/setup.cfg index e0f3f296..727460f0 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 @@ -15,7 +15,7 @@ replace = version = "{new_version}" universal = 1 [flake8] -exclude = +exclude = .git, docs, build, @@ -23,7 +23,7 @@ exclude = tests/mini-esgf-data max-line-length = 88 max-complexity = 12 -ignore = +ignore = C901 E203 E231 @@ -42,15 +42,15 @@ test = pytest [tool:pytest] collect_ignore = ["setup.py"] addopts = --verbose tests -filterwarnings = +filterwarnings = ignore::UserWarning -markers = +markers = online: mark test to need internet connection slow: mark test to be slow [pylint] ignore = docs,tests -disable = +disable = too-many-arguments, too-few-public-methods, invalid-name,