-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Keep git repositories checked out #3414
Comments
Makes somewhat sense. Don't know what the current behaviour (internally) exactly is, though. Have you tried setting |
When I set develop=true on that repository and then run a |
I made a feature request for this: #3420 |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This may be a feature request, but didn't want to open one without knowing for sure it's not possible already.
TLDR: is it possible to keep VCS dependencies checked out in a
src
folder insgtead of requiring it to be checked out for everypoetry update
orpoetry install
?So I have a package that depends on a pacakage from another git repository. That git repository is 1.8Gb in size. On top of that I am dealing with rate limiting from github which often limits my git checkouts to 10KB/s (don't know why). That last part is solved with a VPN, but even without the rate limiting, it would really save a lot of time when reinstalling dependencies multiple times if there was an option to keep VCS dependencies checked out in some
src
folder and just git pull/fetching updates, instead of checking out the whole repository again and again to/tmp
. Is this possible somehow?Issue
The text was updated successfully, but these errors were encountered: