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
Passing a flag to --pip-args that starts with -- does not work properly. If you write --pip-args --foo, Pipx separates this into two separate options, --pip-args and --foo, then exits with an error code because --pip-args now is missing its argument.
How to reproduce
pipx install --pip-args --pre hy
Expected behavior
Pipx should pass the --pre option to Pip when installing Hy.
The text was updated successfully, but these errors were encountered:
Describe the bug
Passing a flag to
--pip-args
that starts with--
does not work properly. If you write--pip-args --foo
, Pipx separates this into two separate options,--pip-args
and--foo
, then exits with an error code because--pip-args
now is missing its argument.How to reproduce
Expected behavior
Pipx should pass the
--pre
option to Pip when installing Hy.The text was updated successfully, but these errors were encountered: