Skip to content

Commit

Permalink
TravisCI now supports Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
peterjc committed Apr 30, 2014
1 parent 45311b0 commit e61afb7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Expand Up @@ -9,12 +9,14 @@ python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"

before_install:
- "export PY3=no"
- "if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then export PY3=yes; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then export PY3=yes; fi"
- "export PY3=yes"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then export PY3=no; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then export PY3=no; fi"
- "if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then export PY3=no; fi"
- "sudo apt-get install clustalw clustalo"
- "sudo apt-get install t-coffee muscle mafft probcons wise emboss"
- "sudo apt-get install samtools bwa"
Expand Down

0 comments on commit e61afb7

Please sign in to comment.