Skip to content

Commit

Permalink
Bump version: 0.7.17-beta → 0.7.18-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
bumpversion[bot] committed Nov 3, 2023
1 parent cc5506e commit d841b55
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
24 changes: 12 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[bumpversion]
current_version = 0.7.17-beta
current_version = 0.7.18-beta
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = gamma
values =
values =
beta
gamma

Expand All @@ -34,27 +34,27 @@ 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,
.eggs,
docs/conf.py,
max-line-length = 88
max-complexity = 12
ignore =
ignore =
C901
E203
E231
Expand All @@ -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,
Expand All @@ -82,7 +82,7 @@ rst-roles =

[coverage:run]
relative_files = True
omit =
omit =
docs/notebooks
tests

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
2 changes: 1 addition & 1 deletion tests/test_xscen.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ def test_package_metadata(self):
contents = f.read()
assert """Gabriel Rondeau-Genesse""" in contents
assert '__email__ = "[email protected]"' in contents
assert '__version__ = "0.7.17-beta"' in contents
assert '__version__ = "0.7.18-beta"' in contents
2 changes: 1 addition & 1 deletion xscen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

__author__ = """Gabriel Rondeau-Genesse"""
__email__ = "[email protected]"
__version__ = "0.7.17-beta"
__version__ = "0.7.18-beta"


# monkeypatch so that warnings.warn() doesn't mention itself
Expand Down

0 comments on commit d841b55

Please sign in to comment.