Skip to content

Commit

Permalink
fix(project): constrain incompatible httpx and pydantic versions
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertCraigie committed Dec 2, 2024
1 parent 7d935bd commit 00f4d23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ authors = [
{ name = "Cloudflare", email = "[email protected]" },
]
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",
Expand Down

2 comments on commit 00f4d23

@Forza-tng
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, is there a plan to support httpx-0.28.x? Currently this blocks the use of cloudflare-python on Gentoo Linux because <httpx-0.28 is masked.

@RobertCraigie
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

v4 will support the latest versions of httpx and it should be released within the next few days

Please sign in to comment.