Skip to content

Commit 4b454b7

Browse files
authored
Replace httpx with httpxyz (#239)
1 parent 749e782 commit 4b454b7

3 files changed

Lines changed: 23 additions & 33 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
]
2121
dynamic = ["version"]
2222
dependencies = [
23-
"httpx",
23+
"httpxyz>=0.31.2",
2424
]
2525

2626
[dependency-groups]

src/module_name/sample.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44

5-
import httpx
5+
import httpxyz
66

77

88
def main() -> bool:
@@ -18,4 +18,4 @@ def squared(value: int) -> int:
1818

1919
def health_check() -> bool:
2020
"""Returns true when github.com is accessible."""
21-
return httpx.get("https://github.com").is_success
21+
return httpxyz.get("https://github.com").is_success

uv.lock

Lines changed: 20 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)