summaryrefslogtreecommitdiff
path: root/python/subunit/__init__.py
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2012-12-17 21:25:24 +1300
committerRobert Collins <robertc@robertcollins.net>2012-12-17 21:25:24 +1300
commitac5b23911197e70b75687f37d845bf9f0c5446fb (patch)
tree90f6751370db0d1463bce133e91f5ffcc717dd20 /python/subunit/__init__.py
parentd32eef6a3fc4fb6dfbf6bfbccec9c8a6ddd91547 (diff)
downloadsubunit-git-0.0.9.tar.gz
Release 0.0.9.0.0.9
Diffstat (limited to 'python/subunit/__init__.py')
-rw-r--r--python/subunit/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/python/subunit/__init__.py b/python/subunit/__init__.py
index 749eda1..42dcf29 100644
--- a/python/subunit/__init__.py
+++ b/python/subunit/__init__.py
@@ -147,6 +147,19 @@ from testtools import testresult
from subunit import chunked, details, iso8601, test_results
+# same format as sys.version_info: "A tuple containing the five components of
+# the version number: major, minor, micro, releaselevel, and serial. All
+# values except releaselevel are integers; the release level is 'alpha',
+# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
+# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
+# releaselevel of 'dev' for unreleased under-development code.
+#
+# If the releaselevel is 'alpha' then the major/minor/micro components are not
+# established at this point, and setup.py will use a version of next-$(revno).
+# If the releaselevel is 'final', then the tarball will be major.minor.micro.
+# Otherwise it is major.minor.micro~$(revno).
+
+__version__ = (0, 0, 9, 'final', 0)
PROGRESS_SET = 0
PROGRESS_CUR = 1