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:
@ -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__
|
||||||
|
Reference in New Issue
Block a user