Update .travis.yml

fix python version issue
This commit is contained in:
Théo Segonds 2015-11-03 16:23:00 +01:00
parent aedba0b1f5
commit 7f3fad80ce

View File

@ -8,7 +8,11 @@ before_install:
- sudo apt-get install -qq libsqlite3-dev libxml2 libxml2-dev libssl-dev libbz2-dev wget curl llvm
language: python
python:
{% if cookiecutter.use_python2 == 'n' -%}
- "3.4"
{% else %}
- "2.7"
{%- endif %}
install:
- "pip install hitch"
- "cd tests"