python::pip given this option:
install_args => ['--pre', '--upgrade']
will generate pip install --pre--upgrade [something] (note pre and upgrade have no space). To correct this you have to add an additional space after each arg:
install_args => ['--pre ', '--upgrade ']
which will correctly generate pip install --pre --upgrade [something].
python::pip given this option:
will generate
pip install --pre--upgrade [something](note pre and upgrade have no space). To correct this you have to add an additional space after each arg:which will correctly generate
pip install --pre --upgrade [something].