diff --git a/clisops/__version__.py b/clisops/__version__.py index 8eb762f2..d3fd9653 100644 --- a/clisops/__version__.py +++ b/clisops/__version__.py @@ -5,4 +5,4 @@ __author__ = "Elle Smith" __email__ = "eleanor.smith@stfc.ac.uk" -__version__ = "0.6.1" +__version__ = "0.6.2" diff --git a/docs/conf.py b/docs/conf.py index 2db05d32..c4cb26c3 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -75,7 +75,7 @@ # the built documents. # # The short X.Y version. -version = "0.6.1" +version = "0.6.2" # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.cfg b/setup.cfg index 41297dee..ce38fa2e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 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,16 +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, -