From 2551c590a7cfb884365288aed2ee563dd2d2ca77 Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Wed, 13 May 2015 20:18:38 -0500 Subject: [PATCH] Specify that travis should use python2.6 --- lib/ansible/modules/extras/.travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/.travis.yml b/lib/ansible/modules/extras/.travis.yml index 7fda5b98133..84ec3a0983a 100644 --- a/lib/ansible/modules/extras/.travis.yml +++ b/lib/ansible/modules/extras/.travis.yml @@ -1,11 +1,15 @@ sudo: false language: python +python: + - "2.7" addons: apt: sources: - deadsnakes packages: - python2.4 + - python2.6 script: - python2.4 -m compileall -fq -x 'cloud/|monitoring/zabbix.*\.py|/layman\.py|/maven_artifact\.py|clustering/consul.*\.py|notification/pushbullet\.py' . - - python -m compileall -fq . + - python2.6 -m compileall -fq . + - python2.7 -m compileall -fq .