1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-13 22:29:30 +00:00

Python versions earlier than 2.6 are no longer supported

This commit is contained in:
Mike Naberezny 2012-01-02 18:47:31 -08:00
parent 319c2afa12
commit 39dd38f205
2 changed files with 4 additions and 2 deletions

View File

@ -7,6 +7,8 @@
- The monitor's load command can now fetch URLs.
- Python versions earlier than 2.6 are no longer supported.
0.10 (2011-08-27)
- Fixed long-standing bugs in relative branch calculations in the

View File

@ -3,8 +3,8 @@ __version__ = '0.11-dev'
import os
import sys
if sys.version_info[:2] < (2, 4):
msg = ("Py65 requires Python 2.4 or better, you are attempting to "
if sys.version_info[:2] < (2, 6):
msg = ("Py65 requires Python 2.6 or later, you are attempting to "
"install it using version %s. Please install with a "
"supported version" % sys.version)
sys.stderr.write(msg)