From: Thomas Heller Date: Fri, 23 Jul 2004 19:47:32 +0000 (+0000) Subject: Make the distutils version number the same as the python version. It X-Git-Tag: v2.4a2~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fa2474b204c2d5fa72f31300379c9def14d74b9;p=python Make the distutils version number the same as the python version. It must be literally contained here, because it is still possible to install this distutils in older Python versions. --- diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 2e9c90c7c7..2592a6c559 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -12,4 +12,4 @@ used from a setup script as __revision__ = "$Id$" -__version__ = "1.0.4" +__version__ = "2.4.0"