diff options
| author | 2013-02-13 18:35:39 -0300 | |
|---|---|---|
| committer | 2013-02-13 18:35:39 -0300 | |
| commit | a40930043121a4b60de8526d58417761a54ab718 (patch) | |
| tree | 383c5cf8e320761ee942619282fe51be625179a7 /.travis.yml | |
| parent | 9c5708cc92af894e414bc76ee35ec2230de5d288 (diff) | |
Imported Upstream version 5.2upstream/5.2
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: |
