1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-01-31 02:00:45 +00:00

devlib/__init__: Update installed version to conform with PEP440

In commit fec0868 setup.py was updated to ensure that commit id is
included within the package version however this was not updated to
reflect the change.
This commit is contained in:
Marc Bonnici 2018-07-26 11:37:01 +01:00
parent ae99db3e24
commit d6d322c8ac

View File

@ -53,6 +53,6 @@ __version__ = '1.0.0'
__commit = __get_commit()
if __commit:
__full_version__ = '{}-{}'.format(__version__, __commit)
__full_version__ = '{}+{}'.format(__version__, __commit)
else:
__full_version__ = __version__