From d841b551158b17d59a3c3cbfc3dc8b30fa8ebfe0 Mon Sep 17 00:00:00 2001 From: "bumpversion[bot]" Date: Fri, 3 Nov 2023 18:37:23 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.17-beta=20=E2=86=92=200.7?= =?UTF-8?q?.18-beta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- setup.cfg | 24 ++++++++++++------------ setup.py | 2 +- tests/test_xscen.py | 2 +- xscen/__init__.py | 2 +- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.cruft.json b/.cruft.json index 86c1c175..d828ba16 100644 --- a/.cruft.json +++ b/.cruft.json @@ -11,7 +11,7 @@ "project_slug": "xscen", "project_short_description": "A climate change scenario-building analysis framework, built with xclim/xarray.", "pypi_username": "RondeauG", - "version": "0.7.17-beta", + "version": "0.7.18-beta", "use_pytest": "y", "use_black": "y", "add_pyup_badge": "n", diff --git a/setup.cfg b/setup.cfg index 3e41fe0e..526a2376 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,15 +1,15 @@ [bumpversion] -current_version = 0.7.17-beta +current_version = 0.7.18-beta commit = True 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 @@ -34,19 +34,19 @@ test = pytest [tool:pytest] collect_ignore = ['setup.py'] -addopts = - --color=yes +addopts = + --color=yes --cov=xscen --ignore-glob='*.ipynb_checkpoints' --strict-markers --verbose -filterwarnings = +filterwarnings = ignore::UserWarning -markers = +markers = requires_netcdf: marks tests that require netcdf files to run [flake8] -exclude = +exclude = .git, docs, build, @@ -54,7 +54,7 @@ exclude = docs/conf.py, max-line-length = 88 max-complexity = 12 -ignore = +ignore = C901 E203 E231 @@ -64,9 +64,9 @@ ignore = F403 W503 W504 -per-file-ignores = +per-file-ignores = tests/*:E402 -rst-roles = +rst-roles = mod, py:attr, py:attribute, @@ -82,7 +82,7 @@ rst-roles = [coverage:run] relative_files = True -omit = +omit = docs/notebooks tests diff --git a/setup.py b/setup.py index 84fa7fdf..04f5efec 100644 --- a/setup.py +++ b/setup.py @@ -125,6 +125,6 @@ def run(self): test_suite="tests", extras_require={"dev": dev_requirements, "docs": docs_requirements}, url="https://github.com/Ouranosinc/xscen", - version="0.7.17-beta", + version="0.7.18-beta", zip_safe=False, ) diff --git a/tests/test_xscen.py b/tests/test_xscen.py index 1b2772b1..2dd21cae 100644 --- a/tests/test_xscen.py +++ b/tests/test_xscen.py @@ -28,4 +28,4 @@ def test_package_metadata(self): contents = f.read() assert """Gabriel Rondeau-Genesse""" in contents assert '__email__ = "rondeau-genesse.gabriel@ouranos.ca"' in contents - assert '__version__ = "0.7.17-beta"' in contents + assert '__version__ = "0.7.18-beta"' in contents diff --git a/xscen/__init__.py b/xscen/__init__.py index 77e63129..4d650803 100644 --- a/xscen/__init__.py +++ b/xscen/__init__.py @@ -52,7 +52,7 @@ __author__ = """Gabriel Rondeau-Genesse""" __email__ = "rondeau-genesse.gabriel@ouranos.ca" -__version__ = "0.7.17-beta" +__version__ = "0.7.18-beta" # monkeypatch so that warnings.warn() doesn't mention itself