Minimal setuptools required for tests

pkg_resources.RequirementParseError has been introduced in
setuptools 16.0. That's the minimal version for running tests.

Change-Id: I4ee2d60a48b4b783d65a7516d794c69c86e4c334
This commit is contained in:
Stanisław Pitucha 2015-07-09 10:17:20 +10:00
parent 8e9c557b88
commit a9759b87f0
2 changed files with 6 additions and 6 deletions

View File

@ -269,12 +269,11 @@ redis>=2.10.0
requests-mock>=0.6.0 # Apache-2.0
retrying>=1.2.3,!=1.3.0 # Apache-2.0
selenium
# It may not be safe to have the installation tools upgrade or downgrade
# setuptools as a side-effect of installing something else, so we do not
# specify a version range for setuptools here. In addition the Openstack CI
# always forces the latest version of setuptools to be installed, so a version
# specifier here would be unlikely to be respected.
setuptools
# While setuptools cannot deal with pre-installed incompatible versions,
# setting a lower bound is not harmful - it makes error messages cleaner. DO
# NOT set an upper bound on setuptools, as that will lead to uninstallable
# situations as progressive releases of projects are done.
setuptools>=16.0
sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3
sphinxcontrib-blockdiag
sphinxcontrib-docbookrestapi

View File

@ -9,3 +9,4 @@ testrepository>=0.0.18
testscenarios>=0.4
testtools>=1.4.0
virtualenv
setuptools>=16.0