-
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
remove circular dependency on export plugin #5980
Conversation
bf13ed4
to
2133fa7
Compare
I'm courious how this should work. IIRC removing the plugin essentially means removing the export command from the default installation. This is something we really like to do in the future, but for now this would be a breaking change. |
2133fa7
to
671f7cc
Compare
Sure, people who want If we want |
7369814
to
b04265b
Compare
I can see we're going to need consensus here... somehow. While we're thinking about disentangling these two projects, here are some more thoughts. I'd be inclined to transfer the bits of export-specific code that linger in this repository over to the plugin entirely. That is: That would allow deleting the horrid cross-repository github workflow, making it much easier to make fixes to the export function. It would also make it easier to add enhancements if the export plugin was more involved in walking the dependency tree eg python-poetry/poetry-plugin-export#91 would like access to information that is known inside that code. To be clear, I don't intend to do any of that any time soon. But this seems as good a place as any to dump some notes. |
b1a1bc3
to
2f4a1ff
Compare
2f4a1ff
to
bf60b72
Compare
I'm still in favor of eliminating this circular dependency but I just wanted to point to my comment here: |
0e974c9
to
caa633c
Compare
caa633c
to
c1abbb9
Compare
Deploy preview for website ready! ✅ Preview Built with commit 7ff9284. |
After having merged #9547, I think there is consensus that we can move on here. |
c1abbb9
to
457296e
Compare
I've rebased, am happy to accept pull requests on my fork with tweaks / allow maintainers to push / have someone else follow up separately with further change |
c3d1438
to
7ff9284
Compare
Co-authored-by: Randy Döring <[email protected]>
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
The circular dependency has been bothering me for a while, but #6441 was the nudge to do something about it.
poetry should not depend on the plugin: the plugin should depend on poetry.
This means that docs that talk about
poetry export
arguably don't belong here at all: but mostly they already say "this is actually provided by poetry-plugin-export" so I've just beefed that up slightly.I'm about to find out what I've broken in the github workflows by removing this dependency...