af5e6b5fb7
The Python core team[*1] stopped supporting python 2.6. Some Python
libraries started following the same path and trying to support 2.6
becomes painful...
For example, most of you already noticed, oslo.config dropped 2.6
support. I tried to work around it with the following commit:
2250171098
But this forces users of decent distributions (e.g Ubuntu 14.04) to
upgrade pip (old pip versions can't understand version conditions).
[*1]
http://www.curiousefficiency.org/posts/2015/04/stop-supporting-python26.html
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
18 lines
198 B
YAML
18 lines
198 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
|
|
env:
|
|
- TOX_ENV=py27
|
|
- TOX_ENV=py34
|
|
- TOX_ENV=pypy
|
|
- TOX_ENV=pep8
|
|
|
|
install:
|
|
- "pip install tox"
|
|
|
|
script:
|
|
- NOSE_VERBOSE=0 tox -e $TOX_ENV
|
|
|
|
sudo: false
|