Commit 8529f9ad authored by Hanno Schlichting's avatar Hanno Schlichting

Removed useless Python version check, gone entirely in 2.13

parent 9a31a165
......@@ -359,13 +359,8 @@ class UnixZopeStarter(ZopeStarter):
def check_python_version():
# check for Python version
python_version = sys.version.split()[0]
optimum_version = '2.3.4'
if python_version < '2.3.4':
raise ZConfig.ConfigurationError(
'Invalid python version: %s, the optimal version is %s or higher' %
(python_version, optimum_version))
# BBB removed in Zope 2.13
pass
def dropPrivileges(cfg):
......
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