Apparently the version variable needs to always be named __version__.

Otherwise bump-my-version gets confused.
This commit is contained in:
Fabio Manganiello 2024-07-27 12:13:40 +02:00
parent 0963cd3d55
commit f809ce0cb0
Signed by untrusted user: blacklight
GPG key ID: D90FBA7F76362774
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
VERSION = '1.1.3'
__version__ = '1.1.3'

View file

@ -13,7 +13,7 @@ data_files =
[metadata]
name = platypush
version = attr: __version__.VERSION
version = attr: __version__.__version__
description_file = README.md
[flake8]