mirror of https://github.com/python/cpython
Revert to having static version numbers again.
This commit is contained in:
parent
f137e1df2c
commit
604c864f0f
|
@ -12,6 +12,12 @@ used from a setup script as
|
||||||
|
|
||||||
__revision__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys
|
# Distutils version
|
||||||
__version__ = "%d.%d.%d" % sys.version_info[:3]
|
#
|
||||||
del sys
|
# 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"
|
||||||
|
|
Loading…
Reference in New Issue