Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for inconsistent docs for multiple constraint dependencies (GH6603) #6604

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/dependency-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ pathlib2 = { version = "^2.2", markers = "python_version <= '3.4' or sys_platfor
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:
Lets say you have a dependency on the package foo which is only compatible
venaturum marked this conversation as resolved.
Show resolved Hide resolved
with Python >=3.6,<3.8 up to version 1.9 and compatible with Python 3.8+ from version 2.0:
venaturum marked this conversation as resolved.
Show resolved Hide resolved
you would declare it like so:

```toml
Expand Down