Sha256: dc52b1a169b350507cb045161f38659138739b6461a20f1108671968d54b435a
Contents?: true
Size: 407 Bytes
Versions: 5
Compression:
Stored size: 407 Bytes
Contents
module VagrantPlugins module Ventriloquist module Platforms class Python < Platform def provision(machine) @config[:version] = '3.3.2' if @config[:version] == 'latest' machine.guest.tap do |guest| guest.capability(:pyenv_install) guest.capability(:pyenv_install_python, @config[:version]) end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems