From 4b6f2109e5397f073107d431971be5d25a8229c1 Mon Sep 17 00:00:00 2001 From: huisman <23581164+huisman@users.noreply.github.com> Date: Wed, 7 Aug 2024 20:16:55 +0200 Subject: [PATCH] docs: fix DEP003 example by explicitly adding certifi (#796) Explicitly add 'certifi' in the transitive dependency example as instructed by the documentation instead of adding 'httpcore'. --- docs/rules-violations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules-violations.md b/docs/rules-violations.md index 58cd296e..13e6ecdb 100644 --- a/docs/rules-violations.md +++ b/docs/rules-violations.md @@ -119,7 +119,7 @@ To fix the issue, `certifi` should be explicitly added to `[project.dependencies ```toml [project] dependencies = [ - "httpcore==0.16.3", + "certifi==2024.7.4", "httpx==0.23.1", ] ```