Replies: 2 comments
-
|
I totally agree with previous comment. While I use very often From a user point of view, much of poetry strength lies in its intuitive interface, and using I can't see any disadvantage to keeping |
Beta Was this translation helpful? Give feedback.
-
|
I like the idea of groups but I have to admit that 90%+ of python projects that I've worked on only ever will have dev as a group so I would never have to worry about the group functionality. So +1 for keeping the convenience flags. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
As I understand, the old way of declaring dependencies is being deprecated, favoring a more flexible approach where one could have many
groupof dependencies, so the new recommended approach becomes-G dev.As much as one could have multiple varying groups of dependencies (
test,typed,dev,localetc etc), probably one of the most common operations would be whether to add a project dependency (poetry add pandas) or just a development dependencypoetry add mypy).--dev / -Dis arguably a very intuitive way of doing this and with less friction (when compared todevbeing agroupof dependencies), some package managers from other languages (yarnuses--dev / -Dwhilenpmuses--save-dev) andpipenvalso has a--devoption.As much as I understand the option for a more flexible
--groupapproach, I would like to suggest keeping the--dev / -Das shortcut - it's a great convenience flag, a lot easier/intuitive to use, and don't really see many downsides to it.Beta Was this translation helpful? Give feedback.
All reactions