diff options
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 7720bab..035fa4c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,11 @@ language: python python: - "2.6" - "2.7" -# The dependencies we rely on are not yet full Python 3.x compatible. -# - "3.2" + - "3.2" # command to install dependencies +# pip is run inside the script because we need have different requirements for Python 2 / 3. install: - - "pip install -r requirements.txt --use-mirrors" + - "python install_requirements.py" - "pip install . --use-mirrors" # We run tests and afterwards nikola to see if the command is executable. script: |
