From 2cfdb5b6b37c322720de1052e29c7a65dce322ae Mon Sep 17 00:00:00 2001 From: vzhd1701 Date: Sat, 6 May 2023 12:14:35 +0500 Subject: [PATCH] build(poetry): limit requests version to avoid urllib errors https://github.com/kevin1024/vcrpy/issues/688 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bc125ab..d48b572 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ enex2notion = "enex2notion.cli:main" python = "^3.7" beautifulsoup4 = "^4.11.1" python-dateutil = "^2.8.2" -requests = "^2.27.1" +requests = ">=2.27.1,<2.29" w3lib = "^1.22.0" tinycss2 = "^1.1.1" pdfkit = "^1.0.0"