mirror of
https://github.com/Hopiu/cookiecutter-django.git
synced 2026-05-24 03:43:44 +00:00
Merge pull request #394 from show0k/patch-1
Fix python version issue in .travis.yml
This commit is contained in:
commit
c49c942ba7
1 changed files with 4 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue