Skip to content

Commit c0d9424

Browse files
committed
test: address recent deprecation warning from starlette
starlette>=1.2 wants httpx2 instead of httpx
1 parent 5d48378 commit c0d9424

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ dependencies = [
5858
dev = [
5959
"readalongs[api]",
6060
"gitlint-core>=0.17.0",
61-
"httpx>=0.24.1",
61+
"httpx>=0.24.1", # for testing with starlette<1.2
62+
"httpx2", # for testing with starlette>=1.2
6263
"pep440>=0.1.2",
6364
"prek",
6465
"pytest",

0 commit comments

Comments
 (0)