Skip to content

Commit

Permalink
Merge branch 'feature/v0.4.0' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Feb 20, 2022
2 parents 266dbf9 + e16fc0b commit 22dd196
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,17 +542,17 @@ def tag(ctx: Context):
with open(os.path.join(PYTHON_PACKAGE_NAME, "__init__.py")) as file_handle:
file_content = file_handle.read()
major_version = re.search(
"__major_version__\\s+=\\s+'(.*)'", file_content
'__major_version__\\s+=\\s+"(.*)"', file_content
).group( # type: ignore[union-attr]
1
)
minor_version = re.search(
"__minor_version__\\s+=\\s+'(.*)'", file_content
'__minor_version__\\s+=\\s+"(.*)"', file_content
).group( # type: ignore[union-attr]
1
)
change_version = re.search(
"__change_version__\\s+=\\s+'(.*)'", file_content
'__change_version__\\s+=\\s+"(.*)"', file_content
).group( # type: ignore[union-attr]
1
)
Expand Down

0 comments on commit 22dd196

Please sign in to comment.