summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2006-08-16 08:13:26 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2006-08-16 08:13:26 (GMT)
commit604c864f0f94d371dbd55f5676f38ca53f528f5a (patch)
tree72685baea9e0c89b53959fdeeeb059f0ddedfa40 /Lib
parentf137e1df2c02f5782c5b0f18a2b3b649f255f63a (diff)
downloadcpython-604c864f0f94d371dbd55f5676f38ca53f528f5a.zip
cpython-604c864f0f94d371dbd55f5676f38ca53f528f5a.tar.gz
cpython-604c864f0f94d371dbd55f5676f38ca53f528f5a.tar.bz2
Revert to having static version numbers again.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/__init__.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
index 9c60e54..21d34c7 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 <mal@egenix.com> 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"