From a12ee912ac0ed640f3e9ebffd4cdcc926e44ceb8 Mon Sep 17 00:00:00 2001 From: Aishwarya gupta <44362114+guptaa3@users.noreply.github.com> Date: Wed, 17 May 2023 20:51:06 +0530 Subject: [PATCH] Update pyproject.toml Pinning version of requests to avoid urllib3 error witnessed in urllib 3.0 added in requests 2.30.0 version ImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with OpenSSL 1.0.2k-fips 26 Jan 2017. See: https://github.com/urllib3/urllib3/issues/2168 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b681fc7..8848b10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ license = "Apache 2.0" [tool.poetry.dependencies] python = "<3.11,>=3.7.1" -requests = "^2.25.1" +requests = "2.29.0" singer-sdk = "^0.26.0" pendulum = "^2.1.2"