Skip to content

Commit

Permalink
Fix version (#1980)
Browse files Browse the repository at this point in the history
### What kind of change does this PR introduce?

* Adds a missing config to prevent the version bump from being
triggered.

### Does this PR introduce a breaking change?

No.
  • Loading branch information
Zeitsperre authored Oct 30, 2024
2 parents 17ecdf0 + 5e2e05e commit 5bf3e9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
- .*
- .github/*/*.md
- .github/*/*.yml
- .github/*.md
- .github/*.yml
- CHANGELOG.rst
- CI/*.in
- CI/*.txt
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.53.3-dev.0"
current_version = "0.53.2"
commit = true
commit_args = "--no-verify"
tag = false
Expand Down
2 changes: 1 addition & 1 deletion xclim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

__author__ = """Travis Logan"""
__email__ = "logan.travis@ouranos.ca"
__version__ = "0.53.3-dev.0"
__version__ = "0.53.2"


with _resources.as_file(_resources.files("xclim.data")) as _module_data:
Expand Down

0 comments on commit 5bf3e9b

Please sign in to comment.