Skip to content

Commit 5b38a29

Browse files
committed
Version bump
1 parent e57124d commit 5b38a29

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Modulefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name 'tracywebtech-pip'
2-
version '1.3.2'
2+
version '1.3.3'
33
source 'https://github.com/TracyWebTech/puppet-pip'
44
author 'Tracy Web Technologies'
55
summary 'Install pip using get-pip.py script'

manifests/install.pp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
$version = undef,
55
$python_version = '2.7',
66
$ensure = present,
7-
$index_url = undef
7+
$index_url = undef,
88
) {
99

1010
Exec {
@@ -15,8 +15,9 @@
1515
present, installed: {
1616
$index_url_arg = $index_url ? {
1717
undef => '',
18-
defaults => "--index_url=$index_url"
18+
defaults => "--index_url=$index_url",
1919
}
20+
2021
if $version != undef {
2122
$package_with_version = "$package==$version"
2223
$grep_for = "^$package_with_version$"

0 commit comments

Comments
 (0)