-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Support flit for installing projects #6280
Comments
Hi @kalekundert! We currently do not support other way of installing packages than using There was an attempt of merging and deploying the support for pipfile because the work was already done there, but we are still considering it. I'd say that we won't support another way of installing Python packages soon, unless there is a good reason to do that. I'm not very familiar with |
First, a disclaimer: Take everything I say with a grain of salt, because I didn't really know anything about any of it until last night. After looking at this more closely, I don't think this feature request really makes sense. The advantage of Last night my docs weren't building, and I thought that was because RTD was trying to do So in the end, the only thing I'm confused about is why RTD wasn't installing my project with pip by default. Does there need to be a Anyways, thanks for taking the time to respond to this issue. |
Yes, you need to have a configuration file with https://docs.readthedocs.io/en/stable/config-file/v2.html#version |
Got it, thank you. |
I have a project that I'm using flit to install and publish, but I don't see a way to get RTD to install it. The process for installing with flit is not much different than installing with pip, basically just running
flit install --symlink
rather thanpip install -e .
.This feature request seems similar to #4783, which seems close to being merged. If there's interest, perhaps I can try to model a PR on that. The v2 configuration file already has a
python.install.method
field, so it would seem natural to add flit as an option there.The text was updated successfully, but these errors were encountered: