Commit 77bce36c authored by Jim Fulton's avatar Jim Fulton

need at least 2.7.9 for ssl

parent ede23fd4
......@@ -17,8 +17,8 @@ from setuptools import setup, find_packages
import os
import sys
if sys.version_info < (2, 7):
print("This version of ZEO requires Python 2.7 or higher")
if sys.version_info < (2, 7, 9):
print("This version of ZEO requires Python 2.7.9 or higher")
sys.exit(0)
if (3, 0) < sys.version_info < (3, 4):
......
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