-
Notifications
You must be signed in to change notification settings - Fork 26
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
chore(Poetry): Group dev deps with updated syntax #610
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commit message: the official Poetry docs say that the old syntax will be deprecated soon (but is not currently). Worth noting that the new syntax was released in Poetry 1.2.0.
@Kurt-von-Laven Are you able to take a look at this and see if it's ok? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
29a0605
to
2bec614
Compare
Previously, development dependencies were grouped under [tool.poetry.dev-dependencies] in pyproject.toml. This syntax will soon be deprecated. Group development dependencies under [tool.poetry.group.dev.dependencies], the updated syntax as of Poetry v1.2.0.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Previously, development dependencies were grouped under
[tool.poetry.dev-dependencies]
inpyproject.toml
. This syntax will soon be deprecated. Group development dependencies under[tool.poetry.group.dev.dependencies]
, the updated syntax as of Poetry v1.2.0.