You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the latest idiomatic way to define dependencies is:
[tool.poetry.group.dev.dependencies]
instead of:
[tool.poetry.dev-dependencies]
See: "A note about defining a dev dependencies group" here
Part 2
To separate dev and test dependencies—after the above change is made—we would simply need to move some items in the pyproject.toml into a new [tool.poetry.group.test.dependencies] group. I have found it helpful to separate out the test dependencies for github actions / CI purposes.
The text was updated successfully, but these errors were encountered:
2 Parts to this issue:
Part 1
It seems the latest idiomatic way to define dependencies is:
[tool.poetry.group.dev.dependencies]
instead of:
[tool.poetry.dev-dependencies]
See: "A note about defining a dev dependencies group" here
Part 2
To separate
dev
andtest
dependencies—after the above change is made—we would simply need to move some items in the pyproject.toml into a new[tool.poetry.group.test.dependencies]
group. I have found it helpful to separate out thetest
dependencies for github actions / CI purposes.The text was updated successfully, but these errors were encountered: