mirror of
https://github.com/mnaberez/py65.git
synced 2025-02-06 02:31:08 +00:00
Python versions earlier than 2.6 are no longer supported
This commit is contained in:
parent
319c2afa12
commit
39dd38f205
@ -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
|
||||
|
4
setup.py
4
setup.py
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user