From 5203e32af30ee570992639dff25910e4f55103e9 Mon Sep 17 00:00:00 2001 From: Thomas Heller Date: Fri, 19 Oct 2001 08:07:19 +0000 Subject: [PATCH] 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. --- Lib/distutils/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.47.3