From fc12aeb3961b8a1a42a8493e3774815c940b75af Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 22 Aug 2024 09:01:10 +0200 Subject: [PATCH] fix(python-client): only require httpx to be >= 0.24 instead of ^0.24 --- python-client/wmill/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-client/wmill/pyproject.toml b/python-client/wmill/pyproject.toml index 1b8feb021b..38c3011828 100644 --- a/python-client/wmill/pyproject.toml +++ b/python-client/wmill/pyproject.toml @@ -16,7 +16,7 @@ include = ["wmill/py.typed"] [tool.poetry.dependencies] python = "^3.7" -httpx = "^0.24" +httpx = ">=0.24" [build-system] requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]