From d935a862895c8d7095774b4093879acd6e5ab09d Mon Sep 17 00:00:00 2001 From: Ruslan Kamaldinov Date: Sat, 13 Dec 2014 22:36:49 +0300 Subject: [PATCH] Pin version of setuptools Latest release of setuptool 8.0 made several versions used in requirements.txt of OpenStack projects invalid. Instances: * SQLAlchemy>=0.8.4,<=0.8.99,>=0.9.7,<=0.9.99 in oslo.db 1.2.0 * python-neutronclient 2.3.9.40.g9ed73c0 in openstackclient Cap '<8.0' is set as a temporary fix until a better solution comes up. Change-Id: I74530bd52cf21951d9b7c26133ed21f46c89c7d1 --- install_puppet.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_puppet.sh b/install_puppet.sh index 99ae790986..b21f164a54 100755 --- a/install_puppet.sh +++ b/install_puppet.sh @@ -210,7 +210,7 @@ function setup_pip { fi python get-pip.py - pip install -U setuptools + pip install -U "setuptools<8.0" } setup_pip