From: Thomas Heller Date: Fri, 19 Oct 2001 08:07:19 +0000 (+0000) Subject: The version number 1.0.2pre doesn't conform to the strict versioning X-Git-Tag: v2.1.2c1~109 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5203e32af30ee570992639dff25910e4f55103e9;p=thirdparty%2FPython%2Fcpython.git The version number 1.0.2pre doesn't conform to the strict versioning guidelines in distutils/version, resulting in failure when trying to use distutils to install 4Suite (and perhaps other modules). Change it to 1.0.2. This finally really fixes Bug #417796. --- diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index bd9761cc25e7..16d387a46a52 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -10,4 +10,4 @@ used from a setup script as __revision__ = "$Id$" -__version__ = "1.0.2pre" +__version__ = "1.0.2"