Drop distribute dependencies

distribute was merged back into setuptools-0.7 and deprecated therefore.
This commit is contained in:
Sascha Peilicke 2013-08-15 14:03:50 +02:00 committed by Ask Solem
parent b68f8050c7
commit 9a2fe5da9e
2 changed files with 14 additions and 3 deletions

View File

@ -1,4 +1,4 @@
distribute
setuptools>=0.7
nose
nose-cover3
mock>=0.7.0

15
tox.ini
View File

@ -2,12 +2,23 @@
envlist = py25,py26,py27,py32,pypy
[testenv]
distribute = True
sitepackages = False
commands = nosetests
[testenv:py33]
recreate = True
changedir = .tox
basepython = python3.3
deps = -r{toxinidir}/requirements/default.txt
-r{toxinidir}/requirements/test3.txt
-r{toxinidir}/requirements/test-ci.txt
commands = {toxinidir}/extra/release/removepyc.sh {toxinidir}
pip install -U -r{toxinidir}/requirements/dev.txt
nosetests -vds kombu.tests \
--with-xunit \
--xunit-file={toxinidir}/nosetests.xml
[testenv:py32]
distribute= True
recreate = True
basepython = python3.2
changedir = .tox