glances/.travis.yml
Alessio Sergi 686ffb6085 Drop Python 3.2 support in favor of Python 3.3 and newer
Python 3.0, 3.1 and 3.2 do not support the u'' string literal syntax at all.
Unicode string literals were introduced in Python 3.3 again.

See http://legacy.python.org/dev/peps/pep-0414/ for more information.
2014-05-23 16:41:14 +02:00

10 lines
156 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt --use-mirrors
script: python setup.py install