From 1af2feee0fb3d60c21212d8e859dd3432757590b Mon Sep 17 00:00:00 2001 From: Paul Haerle Date: Wed, 31 Jan 2024 15:00:26 +0100 Subject: [PATCH] doc: Add missing "not" in docs/usage/config.md... (#2601) ...as it currently states that "requests" would be locked, even if mentioned in tool.pdm.resolution.excludes. --- docs/docs/usage/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/usage/config.md b/docs/docs/usage/config.md index e89f59a754..3d484a518b 100644 --- a/docs/docs/usage/config.md +++ b/docs/docs/usage/config.md @@ -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