From 00f4d2345834d04ddd3bb343360b2edccc5ca060 Mon Sep 17 00:00:00 2001 From: Robert Craigie Date: Mon, 2 Dec 2024 13:26:20 -0500 Subject: [PATCH] fix(project): constrain incompatible httpx and pydantic versions --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d8f5ee3101f..4f4eef95ca2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,8 +8,8 @@ authors = [ { name = "Cloudflare", email = "api@cloudflare.com" }, ] dependencies = [ - "httpx>=0.23.0, <1", - "pydantic>=1.9.0, <3", + "httpx>=0.23.0, <0.28", + "pydantic>=1.9.0, <2.10", "typing-extensions>=4.7, <5", "anyio>=3.5.0, <5", "distro>=1.7.0, <2",