Test for setuptools 0.7.2, turns out there's no 0.7 release on pypi.

--HG--
branch : pytest-2.7
This commit is contained in:
Ionel Cristian Maries 2015-04-10 21:58:59 +03:00
parent 40a682476d
commit a58cb3b95c
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ def has_newish_setuptools():
try:
import setuptools
import pkg_resources
return pkg_resources.parse_version(setuptools.__version__) >= pkg_resources.parse_version('0.7')
return pkg_resources.parse_version(setuptools.__version__) >= pkg_resources.parse_version('0.7.2')
except Exception as exc:
sys.stderr.write("Could not test setuptool's version: %s\n" % exc)
return False