Add workaround to pin pip to 18.0

The default recipe does not work with the latest version of pip. The
workaround is to override to 18.0

Change-Id: If245c3c51930beba151ed8a42cec15131ea28098
(cherry picked from commit 97af7feec5)
This commit is contained in:
Samuel Cassiba
2018-10-14 21:01:22 -07:00
committed by Roger Luethi
parent 60a64614fc
commit b8d6313be4
2 changed files with 3 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ maintainer_email 'openstack-dev@lists.openstack.org'
license 'Apache-2.0'
description 'Common OpenStack attributes, libraries and recipes.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '17.0.0'
version '17.0.1'
recipe 'openstack-common', 'Installs/Configures common recipes'
recipe 'openstack-common::logging', 'Installs/Configures common logging'

View File

@@ -21,6 +21,8 @@
# install a python
python_runtime '2' do
provider :system
# Workaround for https://github.com/poise/poise-python/issues/133
pip_version '18.0'
end
platform_options = node['openstack']['common']['platform']