From: Marc-André Lemburg Date: Wed, 16 Aug 2006 08:13:26 +0000 (+0000) Subject: Revert to having static version numbers again. X-Git-Tag: v2.5c1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=604c864f0f94d371dbd55f5676f38ca53f528f5a;p=thirdparty%2FPython%2Fcpython.git Revert to having static version numbers again. --- diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 9c60e54690e9..21d34c767bc5 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -12,6 +12,12 @@ used from a setup script as __revision__ = "$Id$" -import sys -__version__ = "%d.%d.%d" % sys.version_info[:3] -del sys +# Distutils version +# +# Please coordinate with Marc-Andre Lemburg when adding +# new features to distutils that would warrant bumping the version number. +# +# In general, major and minor version should loosely follow the Python +# version number the distutils code was shipped with. +# +__version__ = "2.5.0"