Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: added note about the difference between groups and extras
Browse files Browse the repository at this point in the history
finswimmer committed Aug 25, 2022
1 parent e7f864d commit b65ae8b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/managing-dependencies.md
Original file line number Diff line number Diff line change
@@ -50,6 +50,14 @@ pytest-mock = "*"
```
{{% /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**

0 comments on commit b65ae8b

Please # to comment.