Commit 09ff8f62 by finswimmer Committed by Bjorn Neergaard

docs: added note about the difference between groups and extras

parent bd32b9ea
...@@ -51,6 +51,14 @@ pytest-mock = "*" ...@@ -51,6 +51,14 @@ pytest-mock = "*"
{{% /note %}} {{% /note %}}
{{% note %}} {{% note %}}
Dependency groups, other than the implicit `main` group, must only contain dependencies you need in your development
process. Installing them is only possible by using Poetry.
To declare a set of dependencies, which add additional functionallity to the project during runtime,
use [extras]({{< relref "pyproject#extras" >}}) instead. Extras can be installed by the end user using `pip`.
{{% /note %}}
{{% note %}}
**A note about the `dev-dependencies` section** **A note about the `dev-dependencies` section**
Any dependency declared in the `dev-dependencies` section will automatically be added to a `dev` group. Any dependency declared in the `dev-dependencies` section will automatically be added to a `dev` group.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment