Commit 57375f03 authored by Guido van Rossum's avatar Guido van Rossum

Require Python 2.2.2 or later.

parent 1f56608d
...@@ -13,11 +13,13 @@ ...@@ -13,11 +13,13 @@
"""Try to do all of the installation steps. """Try to do all of the installation steps.
This must be run from the top-level directory of the installation. This must be run from the top-level directory of the installation.
(Yes, this is cheezy. We'll fix this when we have a chance. Yes, this is cheesy.
""" """
import sys, os import sys, os
if not (sys.version >= "2.2" and sys.version_info >= (2, 2, 2)):
raise RuntimeError, "Python 2.2.2 or later is required"
def setup(me): def setup(me):
home=os.path.split(me)[0] home=os.path.split(me)[0]
......
...@@ -13,11 +13,13 @@ ...@@ -13,11 +13,13 @@
"""Try to do all of the installation steps. """Try to do all of the installation steps.
This must be run from the top-level directory of the installation. This must be run from the top-level directory of the installation.
\(Yes, this is cheezy. We'll fix this when we have a chance.) Yes, this is cheesy.
""" """
import sys, os import sys, os
if not (sys.version >= "2.2" and sys.version_info >= (2, 2, 2)):
raise RuntimeError, "Python 2.2.2 or later is required"
def setup(me): def setup(me):
home=os.path.split(me)[0] home=os.path.split(me)[0]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment