replace poetry plugin commands with more generic poetry self commands#5450
Merged
abn merged 12 commits intopython-poetry:masterfrom May 30, 2022
Merged
replace poetry plugin commands with more generic poetry self commands#5450abn merged 12 commits intopython-poetry:masterfrom
poetry plugin commands with more generic poetry self commands#5450abn merged 12 commits intopython-poetry:masterfrom
Conversation
c3ecbda to
8d92477
Compare
poetry plugin commands with more generic poetry self commandspoetry plugin commands with more generic poetry self commands
Member
Author
|
Functional changes are ready for review. Will need to add some documentation changes. |
finswimmer
reviewed
Apr 19, 2022
1d4c79b to
92c3986
Compare
finswimmer
reviewed
Apr 23, 2022
92c3986 to
9857880
Compare
finswimmer
previously requested changes
Apr 24, 2022
9857880 to
09d695e
Compare
This was referenced Apr 26, 2022
09d695e to
3cae4e8
Compare
3cae4e8 to
d54bb20
Compare
d54bb20 to
53e9298
Compare
Closed
53e9298 to
2d6a480
Compare
finswimmer
reviewed
May 10, 2022
finswimmer
previously approved these changes
May 14, 2022
Member
Author
|
One scenario that has not been handled is a case where multiple |
7ed4c68 to
90dd80c
Compare
1 task
2eb14bb to
08778ce
Compare
08778ce to
5847c83
Compare
Member
Author
|
@finswimmer gentle nudge |
ashnair1
added a commit
to ashnair1/poetry
that referenced
this pull request
May 30, 2022
2 tasks
Merged
|
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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Conceptual Changes
<user-config-dir>/pypoetry/pyproject.tomlinstead of the current (1.2.0b1) localtion at the base of the virtual envrionment. This was changes in order to preserve plugin/additional package configuration even when the virtual environment (Poetry's runtime environment) was recreated. You can simply dopoetry self installto get everything back in order. (Might need to implementself lockcommand to faciititate some use cases).selfcommand now simply switches context to<user-config-dir>/pypoetryand treats it as a Poetry managed project.tool.poetry.group.additional.dependenciessection of the<user-config-dir>/pypoetry/pyproject.tomlfile and can be listed usingpoetry self show --addons.Commands Added
self add
self remove
self install
self show
self show plugins
Commands Changed
self updatenow wraps aroundupdateinstead for special handling.plugin addis now deprecated and re-routes toself addplugin removeis now deprecated and re-routes toself removeplugin showis now deprecated and re-routes toself show pluginsExample Usages
Testing
Using pipx
Using a container (podman | docker)