We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__version__
version.py
1 parent 85bc0e7 commit 5a126bfCopy full SHA for 5a126bf
doc/changes/unreleased.md
@@ -2,6 +2,7 @@
2
3
## 🔧 Changed
4
5
+* Add `__version__` member to generated `version.py` for comatibility with other versions schemes
6
* Excluded pyupgrade from project check due to its destructive nature
7
* Updated cookiecutter template
8
- removed obsolete template file `version.html`
exasol/toolbox/pre_commit_hooks/package_version.py
@@ -32,6 +32,7 @@
32
MINOR = {minor}
33
PATCH = {patch}
34
VERSION = f"{{MAJOR}}.{{MINOR}}.{{PATCH}}"
35
+ __version__ = VERSION
36
''') + "\n"
37
# fmt: on
38
exasol/toolbox/version.py
@@ -8,3 +8,4 @@
MINOR = 18
9
PATCH = 0
10
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
11
+__version__ = VERSION
0 commit comments