Python >= 2.5 is now required since we use hashlib for Python 2.6 compatibillity

This commit is contained in:
Philipp Wolfer
2009-06-04 02:05:31 +02:00
parent 9092a7abca
commit f9115be674
2 changed files with 5 additions and 5 deletions

View File

@@ -9,8 +9,8 @@ from ConfigParser import RawConfigParser
from picard import __version__
if sys.version_info < (2, 4):
print "*** You need Python 2.4 or higher to use Picard."
if sys.version_info < (2, 5):
print "*** You need Python 2.5 or higher to use Picard."
args = {}