From b5e556d36c776a35a75ee1694ff21c265a7a256d Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 25 May 2015 21:24:00 -0500 Subject: keep distutils version in sync with python version automatically --- Lib/distutils/__init__.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 6eb79cb639..d823d040a1 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -8,10 +8,6 @@ used from a setup script as setup (...) """ -# Distutils version -# -# Updated automatically by the Python release process. -# -#--start constants-- -__version__ = "3.2.6" -#--end constants-- +import sys + +__version__ = sys.version[:sys.version.index(' ')] -- cgit v1.2.1