From ede2fd2141de0068a7a87b754a8ab889be5406ff Mon Sep 17 00:00:00 2001 From: Matt Webster Date: Wed, 27 Aug 2025 21:38:22 -0400 Subject: [PATCH] chore: upgrade httpx dependency to support 0.28.x versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates httpx dependency constraint from <0.28 to <0.29 to allow installation of httpx 0.28.1 and other 0.28.x versions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aef26b82..71f042cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ requires-python = ">=3.9,<4.0.0" readme = "README.md" dependencies = [ - "httpx>=0.27.0,<0.28", + "httpx>=0.27.0,<0.29", "pyjwt>=2.8.0,<3", "dataclasses-json>=0.6.0,<0.7", "marshmallow>=3.21.0,<4",