From f92be1d81e4680aa9d07f1334e860230dea6acda Mon Sep 17 00:00:00 2001 From: astrobeard Date: Sun, 14 Jun 2020 16:04:49 -0400 Subject: [PATCH] [skip travis] doc: version object type-cast note ; build number reversion -> finalizing PyPI build --- setup.py | 2 +- vice/version.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4d11edaf..2e21d01a 100644 --- a/setup.py +++ b/setup.py @@ -83,7 +83,7 @@ MAJOR = 1 MINOR = 1 MICRO = 0 -BUILD = 10 +BUILD = 0 ISRELEASED = True VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO) if BUILD: VERSION += ".%d" % (BUILD) diff --git a/vice/version.py b/vice/version.py index 29a15b0c..56d460c4 100644 --- a/vice/version.py +++ b/vice/version.py @@ -17,6 +17,9 @@ class version_info: - build : The build number - __version__ : The version string .. - released : If True, this version of VICE has been released + + .. note:: This object can be type-cast to a tuple of the form: + (major, minor, micro, build). """ def __repr__(self):