diff options
author | Thomas Heller <theller@ctypes.org> | 2004-07-23 19:47:32 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2004-07-23 19:47:32 (GMT) |
commit | 6fa2474b204c2d5fa72f31300379c9def14d74b9 (patch) | |
tree | f40424fd2052d5430cdf9f917c70310f98661f3c /Lib | |
parent | ee6fd06ecf8c81e72272be8866029987cac5a483 (diff) | |
download | cpython-6fa2474b204c2d5fa72f31300379c9def14d74b9.zip cpython-6fa2474b204c2d5fa72f31300379c9def14d74b9.tar.gz cpython-6fa2474b204c2d5fa72f31300379c9def14d74b9.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 2e9c90c..2592a6c 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" |