From d6d322c8ac7fff4128f0cef314bac3f452dc4884 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Thu, 26 Jul 2018 11:37:01 +0100 Subject: [PATCH] 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. --- devlib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devlib/__init__.py b/devlib/__init__.py index f2727bd..f4b3ac4 100644 --- a/devlib/__init__.py +++ b/devlib/__init__.py @@ -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__