Skip to content

Commit

Permalink
fix: inconsistent docs for multiple constraint dependencies (#6604)
Browse files Browse the repository at this point in the history
Co-authored-by: Bjorn Neergaard <bjorn@neersighted.com>
(cherry picked from commit c275878)
  • Loading branch information
venaturum authored and neersighted committed Sep 23, 2022
1 parent 05ffef5 commit 2f71a53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/dependency-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,14 +302,14 @@ Sometimes, one of your dependency may have different version ranges depending
on the target Python versions.

Let's say you have a dependency on the package `foo` which is only compatible
with Python <3.0 up to version 1.9 and compatible with Python 3.4+ from version 2.0:
with Python 3.6-3.7 up to version 1.9, and compatible with Python 3.8+ from version 2.0:
you would declare it like so:

```toml
[tool.poetry.dependencies]
foo = [
{version = "<=1.9", python = "^3.6"},
{version = "^2.0", python = "^3.8"}
{version = "<=1.9", python = ">=3.6,<3.8"},
{version = "^2.0", python = ">=3.8"}
]
```

Expand Down

0 comments on commit 2f71a53

Please sign in to comment.