Skip to content

Commit

Permalink
[skip travis] doc: version object type-cast note ; build number rever…
Browse files Browse the repository at this point in the history
…sion -> finalizing PyPI build
  • Loading branch information
giganano committed Jun 14, 2020
1 parent 155955e commit f92be1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
3 changes: 3 additions & 0 deletions vice/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ class version_info:
- build : The build number
- __version__ : The version string <major>.<minor>.<micro>
- 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):
Expand Down

0 comments on commit f92be1d

Please sign in to comment.