Merge pull request #394 from show0k/patch-1

Fix python version issue in .travis.yml
This commit is contained in:
Daniel Roy Greenfeld 2015-11-09 07:19:28 -08:00
commit c49c942ba7

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"