Commit 0e44a266 authored by Kai Lautaportti's avatar Kai Lautaportti

Use the latest zc.buildout versions in the 1.x and 2.x lines.

parent 572347aa
...@@ -7,8 +7,8 @@ python: ...@@ -7,8 +7,8 @@ python:
install: install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install --use-mirrors zc.buildout==1.6.3; fi - if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install --use-mirrors zc.buildout<2.0.0; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install --use-mirrors zc.buildout==2.0.0 zope.testing manuel; fi - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install --use-mirrors zc.buildout>=2.0.0 zope.testing manuel; fi
- python setup.py install - python setup.py install
script: python setup.py test script: python setup.py test
...@@ -9,21 +9,21 @@ envlist = py26, py27, py32, py33 ...@@ -9,21 +9,21 @@ envlist = py26, py27, py32, py33
[testenv] [testenv]
commands = python setup.py test commands = python setup.py test
deps = deps =
zc.buildout==1.6.3 zc.buildout<2.0.0
[testenv:py26] [testenv:py26]
deps = deps =
zc.buildout==1.6.3 zc.buildout<2.0.0
unittest2 unittest2
[testenv:py32] [testenv:py32]
deps = deps =
zc.buildout==2.0.0 zc.buildout>=2.0.0
zope.testing zope.testing
manuel manuel
[testenv:py33] [testenv:py33]
deps = deps =
zc.buildout==2.0.0 zc.buildout>=2.0.0
zope.testing zope.testing
manuel manuel
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment