Skip to content

Commit

Permalink
need at least 2.7.9 for ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Jul 21, 2016
1 parent ede23fd commit 77bce36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -17,8 +17,8 @@
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):
Expand Down

0 comments on commit 77bce36

Please sign in to comment.