summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-02-27 01:07:04 +0000
committerDamien George <damien.p.george@gmail.com>2015-02-27 01:07:04 +0000
commiteb0a7129a5f795aa8277b3e754b35b467e609ae1 (patch)
treed171533bca50765e550a2a70bd40946f35104609
parentb67253e96f2bf9225c5652feb3bf41e30c76230e (diff)
downloadmicropython-eb0a7129a5f795aa8277b3e754b35b467e609ae1.tar.gz
micropython-eb0a7129a5f795aa8277b3e754b35b467e609ae1.zip
travis: Use CPython3.4 instead of 3.3.
-rw-r--r--.travis.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 1c2281a488..205c3cef12 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,7 +7,7 @@ before_script:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository -y ppa:terry.guo/gcc-arm-embedded
- sudo apt-get update -qq
- - sudo apt-get install -y python3.3 python3 gcc-4.7 gcc-multilib gcc-arm-none-eabi qemu-system mingw32
+ - sudo apt-get install -y python3.4 python3 gcc-4.7 gcc-multilib gcc-arm-none-eabi qemu-system mingw32
# For teensy build
- sudo apt-get install realpath
@@ -25,8 +25,8 @@ script:
- make -C cc3200 BTARGET=bootloader BTYPE=release
- make -C windows CROSS_COMPILE=i586-mingw32msvc-
- - (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests)
- - (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests --emit native)
+ - (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests)
+ - (cd tests && MICROPY_CPYTHON3=python3.4 ./run-tests --emit native)
after_failure:
- (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff -u $testbase.exp $testbase.out; done)