Skip to content

Commit b03856a

Browse files
committed
keep distutils version in sync with python version automatically
1 parent 9bd476e commit b03856a

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Lib/distutils/__init__.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
setup (...)
99
"""
1010

11-
# Distutils version
12-
#
13-
# Updated automatically by the Python release process.
14-
#
15-
#--start constants--
16-
__version__ = "3.2.6"
17-
#--end constants--
11+
import sys
12+
13+
__version__ = sys.version[:sys.version.index(' ')]

0 commit comments

Comments
 (0)