mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-25 19:17:09 +03:00
686ffb6085
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.
10 lines
156 B
YAML
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
|