Change setuptools requirement to <=18.5

The thing is that this requirement setuptools==18.5
becomes a part of fuel-nailgun RPM package.
The highest available version in mirror.fuel-infra.org
at the moment is python-setuptools-0.7.2 which
leads to the error pkg_resources.VersionConflict when
trying to load nailgun entry points using for example

load_entry_point('nailgun==8.0.0', 'console_scripts', 'nailgun_syncdb')

Console script entry points are used during the Fuel
master node deployment.

Change-Id: I1e9b326912ef2e60da87f89af89d3a7968818276
Related-Bug: #1519727
Closes-Bug: #1519990
This commit is contained in:
Vladimir Kozhukalov 2015-11-26 01:32:03 +03:00
parent 292844d7bb
commit 31fd638659
1 changed files with 1 additions and 1 deletions

View File

@ -47,4 +47,4 @@ stevedore<1.4.0
# NOTE(akscram): pinned until 18.6.2 because the installation in
# the editable mode is broken
# See: https://bugs.launchpad.net/fuel/+bug/1519727
setuptools==18.5
setuptools<=18.5