Skip to content

Commit

Permalink
docs: added note about the difference between groups and extras
Browse files Browse the repository at this point in the history
  • Loading branch information
finswimmer committed Aug 25, 2022
1 parent 721301c commit d21954a
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
Expand Up @@ -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**

Expand Down

0 comments on commit d21954a

Please sign in to comment.