File tree Expand file tree Collapse file tree 4 files changed +5
-9
lines changed
Expand file tree Collapse file tree 4 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,11 @@ current_version = 0.0.1
33commit = True
44tag = True
55
6- [bumpversion:file:example_project_python/_version .py]
6+ [bumpversion:file:example_project_python/__init__ .py]
77search = __version__ = " {current_version}"
88replace = __version__ = " {new_version}"
99
10-
1110[bumpversion:file:pyproject.toml]
1211search = version =" {current_version}"
1312replace = version =" {new_version}"
1413
15- [bumpversion:file:setup.py]
16- search = version =" {current_version}"
17- replace = version =" {new_version}"
Original file line number Diff line number Diff line change 1- from ._version import __version__
21from .hello import hello , print_hello
2+
3+ __version__ = "0.0.1"
Original file line number Diff line number Diff line change 11from .hello import print_hello
22
3- if __name__ == "__main__" :
4- print_hello ()
3+ if __name__ == "__main__" : # pragma: no cover
4+ print_hello () # pragma: no cover
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments