forked from platypush/platypush
Apparently the version variable needs to always be named __version__
.
Otherwise bump-my-version gets confused.
This commit is contained in:
parent
0963cd3d55
commit
f809ce0cb0
2 changed files with 2 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
VERSION = '1.1.3'
|
__version__ = '1.1.3'
|
||||||
|
|
|
@ -13,7 +13,7 @@ data_files =
|
||||||
|
|
||||||
[metadata]
|
[metadata]
|
||||||
name = platypush
|
name = platypush
|
||||||
version = attr: __version__.VERSION
|
version = attr: __version__.__version__
|
||||||
description_file = README.md
|
description_file = README.md
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
|
|
Loading…
Reference in a new issue