diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-04-15 02:14:53 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-04-15 02:14:53 +0100 |
commit | e31a8222f2b8844c01e2224140aa6d41ab5dcf29 (patch) | |
tree | e533d44b439d53ae01c4edbbb5db7d32dd942063 | |
parent | 0388b2ea7886d1d2db2c921c67f6169f323e4f69 (diff) | |
download | micropython-e31a8222f2b8844c01e2224140aa6d41ab5dcf29.tar.gz micropython-e31a8222f2b8844c01e2224140aa6d41ab5dcf29.zip |
Update .travis.yml
Doh, the shebang line for run-tests itself relies on `python3`
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 631204f5a3..0595d24383 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ compiler: before_script: - sudo add-apt-repository -y ppa:fkrull/deadsnakes - sudo apt-get update -qq - - sudo apt-get install -y python3.3 + - sudo apt-get install -y python3.3 python3 script: - make -C unix |