From 13a2fc62f2c83536f78da7ce50e7857814b39337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Herv=C3=A1s?= Date: Thu, 26 Mar 2026 13:42:43 +0100 Subject: [PATCH] Add missing httpx dependency httpx is used, but not declared in the project dependencies. This means that projects that use the client will fail if hitting the token paths, which require the package. --- pyproject.toml | 1 + requirements.txt | 1 + setup.py | 1 + 3 files changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9592626..ba1dd7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ urllib3 = ">= 1.25.3" python-dateutil = ">=2.8.2" pydantic = ">=2" typing-extensions = ">=4.7.1" +httpx = ">=0.23" [tool.poetry.dev-dependencies] pytest = ">=7.2.1" diff --git a/requirements.txt b/requirements.txt index cc85509..7d22e04 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ setuptools >= 21.0.0 urllib3 >= 1.25.3, < 2.1.0 pydantic >= 2 typing-extensions >= 4.7.1 +httpx >= 0.23 diff --git a/setup.py b/setup.py index dc6b43b..78019dd 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ "python-dateutil", "pydantic >= 2", "typing-extensions >= 4.7.1", + "httpx >= 0.23", ] setup(