Skip to content

Commit

Permalink
doc: Add missing "not" in docs/usage/config.md... (#2601)
Browse files Browse the repository at this point in the history
...as it currently states that "requests" would be locked, even if mentioned in tool.pdm.resolution.excludes.
  • Loading branch information
phaer authored Jan 31, 2024
1 parent f5c5527 commit 1af2fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/usage/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ Sometimes you don't even want to include certain packages in the locked file bec
excludes = ["requests"]
```

With this config, `requests` will be locked in the lockfile, and its dependencies such as `urllib3` and `idna` will also not show up in the resolution result, if not depended on by other packages. The installer will not be able to pick them up either.
With this config, `requests` will not be locked in the lockfile, and its dependencies such as `urllib3` and `idna` will also not show up in the resolution result, if not depended on by other packages. The installer will not be able to pick them up either.

## Passing constant arguments to every pdm invocation

Expand Down

0 comments on commit 1af2fee

Please sign in to comment.