From fc7a131c7c3aa5f8d4f58602fa1f853163ef1b73 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 19 Aug 2014 11:39:24 -0700 Subject: [PATCH] Tox fixed the openstack breaking bug use latest Hurray upstream tox merged a fix for the issue that had us stuck on 1.6.1. They have now released a new version so we can consume that fix. Start using latest tox again to pull that in. See https://bitbucket.org/hpk42/tox/issue/150/posargs-configerror for all the details. Change-Id: Ia2c7cb07c98c9942113309054b4c40af23596d04 Fixes-bug: 1274135 --- manifests/slave.pp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/manifests/slave.pp b/manifests/slave.pp index 172ac31..10a648e 100644 --- a/manifests/slave.pp +++ b/manifests/slave.pp @@ -119,16 +119,14 @@ class jenkins::slave( } } include pip::python3 - # Temporarily handle tox separately so we can pin it package { 'tox': - ensure => '1.6.1', + ensure => 'latest', provider => pip3, require => Class['pip::python3'], } } else { - # Temporarily handle tox separately so we can pin it package { 'tox': - ensure => '1.6.1', + ensure => 'latest', provider => pip, require => Class['pip'], }