You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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].
The text was updated successfully, but these errors were encountered:
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]
.The text was updated successfully, but these errors were encountered: