1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-06-17 12:35:12 +01: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

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