Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update patch version #247

Merged
merged 2 commits into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion model/atmosphere/dycore/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.6
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "0.0.5"
__version__: Final = "0.0.6"
__version_info__: Final = pkg_version.parse(__version__)
2 changes: 1 addition & 1 deletion model/common/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.6
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
2 changes: 1 addition & 1 deletion model/common/src/icon4py/model/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "0.0.5"
__version__: Final = "0.0.6"
__version_info__: Final = pkg_version.parse(__version__)
2 changes: 1 addition & 1 deletion tools/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.6
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?
serialize =
{major}.{minor}.{patch}
Expand Down
2 changes: 1 addition & 1 deletion tools/src/icon4pytools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
__license__: Final = "GPL-3.0-or-later"


__version__: Final = "0.0.4"
__version__: Final = "0.0.6"
__version_info__: Final = pkg_version.parse(__version__)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ passenv =
deps =
-r {toxinidir}/requirements-dev.txt
commands =
-pytest -v -s -n auto -cache-clear --cov --cov-reset --doctest-modules atmosphere/dycore/src common/src
-pytest -v -s -n auto -cache-clear --cov --cov-reset --doctest-modules model/atmosphere/dycore/src model/common/src tools/src
pytest -v -s -n auto --cov --cov-append --benchmark-disable
commands_post =
rm -rf tests/_reports/coverage_html
Expand Down