Skip to content

Commit 1690b33

Browse files
authored
Merge pull request #732 from voxpupuli/modulesync
modulesync 10.1.0-26-ga82038c
2 parents bad1c94 + 22199d2 commit 1690b33

File tree

4 files changed

+6
-276
lines changed

4 files changed

+6
-276
lines changed

.github/CONTRIBUTING.md

Lines changed: 0 additions & 272 deletions
This file was deleted.

.msync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Managed by modulesync - DO NOT EDIT
33
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
44

5-
modulesync_config_version: '10.1.0'
5+
modulesync_config_version: '10.2.0'

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
55

66
group :test do
7-
gem 'voxpupuli-test', '~> 11.0', :require => false
7+
gem 'voxpupuli-test', '~> 12.0', :require => false
88
gem 'puppet_metadata', '~> 5.0', :require => false
99
end
1010

manifests/pip.pp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,12 +218,14 @@
218218
# Unfortunately this is the smartest way of getting the latest available package version with pip as of now
219219
# Note: we DO need to repeat ourselves with "from version" in both grep and sed as on some systems pip returns
220220
# more than one line with paretheses.
221-
$latest_version = join([
221+
$latest_version = join(
222+
[
222223
"${pip_install} ${legacy_resolver} ${pypi_index} ${pypi_extra_index} ${proxy_flag}",
223224
" ${install_args} ${install_editable} '${real_pkgname}==9!0dev0+x' 2>&1",
224225
" | sed -nE 's/.*\\(from versions: (.*, )*(.*)\\)/\\2/p'",
225226
' | tr -d "[:space:]"',
226-
])
227+
],
228+
)
227229

228230
# Packages with underscores in their names are listed with dashes in their place in `pip freeze` output
229231
$pkgname_with_dashes = regsubst($real_pkgname, '_', '-', 'G')

0 commit comments

Comments
 (0)