diff roundup/version_check.py @ 5321:4566360871dc

Raises python requirement to 2.7. * Change the most important places version_check.py abd doc/installation.txt for python2.7. This has been discussed on roundup-devel twice. * Add note to anypy TODO and CHANGES.txt.
author Bernhard Reiter <bernhard@intevation.de>
date Tue, 24 Apr 2018 08:58:28 +0200
parents 0c2cad65ebba
children 64b05e24dbd8
line wrap: on
line diff
--- a/roundup/version_check.py	Tue Apr 24 08:42:40 2018 +0200
+++ b/roundup/version_check.py	Tue Apr 24 08:58:28 2018 +0200
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
-# Roundup requires Python 2.5+ as mentioned in doc\installation.txt
-VERSION_NEEDED = (2,5)
+# Roundup requires Python 2.7+ as mentioned in doc\installation.txt
+VERSION_NEEDED = (2,7)
 
 import sys
 if sys.version_info < VERSION_NEEDED:

Roundup Issue Tracker: http://roundup-tracker.org/