From f5710b41035c55c65c42a4b36cf6075f5a1e0fc6 Mon Sep 17 00:00:00 2001 From: ramnes Date: Wed, 18 Dec 2024 10:57:50 +0100 Subject: [PATCH] Security update: require httpx >= 0.23.0 https://security.snyk.io/package/pip/httpx https://security.snyk.io/package/pip/httpx/0.22.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8ce4c8f..db30c44 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def get_description(): packages=["notion_client"], python_requires=">=3.7, <4", install_requires=[ - "httpx >= 0.15.0", + "httpx >= 0.23.0", ], classifiers=[ "Programming Language :: Python :: 3.7",