From cc37081f06f0fa25c0f4c1a7cc7c3c468ab67890 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Thu, 21 Sep 2017 15:54:47 +0100 Subject: [PATCH] Fixes to version.py docs --- fsl/version.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fsl/version.py b/fsl/version.py index 4f82dff5d..493fc9afc 100644 --- a/fsl/version.py +++ b/fsl/version.py @@ -31,7 +31,7 @@ is compatible with PEP 440 (https://www.python.org/dev/peps/pep-0440/): which primarily involve bug-fixes and minor changes. -The sole exception to the above convention are evelopment versions, which end +The sole exception to the above convention are development versions, which end in ``'.dev'``. """ @@ -56,7 +56,7 @@ def parseVersionString(versionString): components = versionString.split('.') # Truncate after three elements - - # a development (unreleased0 version + # a development (unreleased version # number will end with '.dev', but # we ignore this for the purposes of # comparison. @@ -89,7 +89,7 @@ def compareVersions(v1, v2, ignorePoint=False): - -1 if ``v1`` < ``v2`` (i.e. ``v1`` is older than ``v2``) - 0 if ``v1`` == ``v2`` - - 0 if ``v1`` > ``v2`` + - 1 if ``v1`` > ``v2`` """ v1 = parseVersionString(v1) -- GitLab