Switch to using wheel from distro on release

We only use this to look up the name of a wheel, so we don't need
the bleeding edge version.

Change-Id: I9a09c3b35c997a9db9cc09d8dc35766e9713ce69
This commit is contained in:
James E. Blair 2015-12-16 16:04:46 -08:00 committed by James E. Blair
parent beabdcd30c
commit ae46770cec

View File

@ -39,16 +39,12 @@ class openstack_project::release_slave (
project_config_repo => $project_config_repo, project_config_repo => $project_config_repo,
} }
include pip
package { 'twine': package { 'twine':
ensure => present, ensure => present,
} }
package { 'wheel': package { 'python-wheel':
ensure => latest, ensure => present
provider => pip,
require => Class['pip'],
} }
class { '::nodejs': class { '::nodejs':