2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-12-23 17:55:04 +01:00

Removed python 2.4 from the list of interpreters for testing

This commit is contained in:
Thomas Nagy 2014-10-04 13:58:53 +02:00
parent 8c0ead0ca1
commit a71bc05547
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64

View File

@ -18,7 +18,7 @@ else: raise Exception("Unknown platform, cannot get machine name")
from waflib import Logs, Errors
# python 2.3 tends to hang for whatever reason :-/
PYTHONS = "2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4".split()
PYTHONS = "2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4".split()
DIRS = ['c', 'python']
#DIRS = [x for x in os.listdir('.') if os.path.isdir(x) and x not in ('variants', 'build', 'mac_app', 'precious')]