-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing runtime dependency on pip #646
Comments
Hmmm, good point. I think I just assume |
According to docs https://flit.pypa.io/en/stable/cmdline.html#flit-install: > Flit calls pip to do the installation. but pip was not specified as runtime dependency of flit. Fixes: pypa#646 Signed-off-by: Stanislav Levin <slev@altlinux.org>
Project dependencies specify packages to be installed in the same environment as flit. However, flit currently uses pip installed in the target environment, which may be changed by passing |
According to docs https://flit.pypa.io/en/stable/cmdline.html#flit-install:
but
pip
is not specified as runtime dependency offlit
.The text was updated successfully, but these errors were encountered: