[rtems-tools commit] Modified waf scripts to have a minimum python version requirement of 2.6.6 , instead of 2.7.3
Chris Johns
chrisj at rtems.org
Wed Feb 25 09:46:20 UTC 2015
Module: rtems-tools
Branch: master
Commit: 01a419253a66e7c126ef3f5bc74a7ae7455149a1
Changeset: http://git.rtems.org/rtems-tools/commit/?id=01a419253a66e7c126ef3f5bc74a7ae7455149a1
Author: Adit Sahasrabudhe <asahasra at fb.com>
Date: Sat Feb 21 22:07:10 2015 -0800
Modified waf scripts to have a minimum python version requirement of 2.6.6, instead of 2.7.3
---
tester/wscript | 2 +-
tools/gdb/python/wscript | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tester/wscript b/tester/wscript
index 0e170d6..17aacdd 100644
--- a/tester/wscript
+++ b/tester/wscript
@@ -41,7 +41,7 @@ def options(opt):
def configure(conf):
recurse(conf)
conf.load('python')
- conf.check_python_version((2,7,3))
+ conf.check_python_version((2,6,6))
def build(bld):
recurse(bld)
diff --git a/tools/gdb/python/wscript b/tools/gdb/python/wscript
index 0cb5bb8..1882d0a 100644
--- a/tools/gdb/python/wscript
+++ b/tools/gdb/python/wscript
@@ -7,7 +7,7 @@ def options(opt):
def configure(conf):
conf.load('python')
- conf.check_python_version((2,7,3))
+ conf.check_python_version((2,6,6))
def build(bld):
source = ['__init__.py',
More information about the vc
mailing list