Skip to content

Commit 4388738

Browse files
committed
default to httpx2, skip pdm lock update
1 parent edaae66 commit 4388738

91 files changed

Lines changed: 141 additions & 89 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/default_to_httpx2.md

Lines changed: 6 additions & 0 deletions

end_to_end_tests/docstrings-on-attributes-golden-record/README.md

Lines changed: 1 addition & 1 deletion

end_to_end_tests/docstrings-on-attributes-golden-record/my_test_api_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import ssl
22
from typing import Any, Self
33

4-
import httpx
4+
import httpx2 as httpx
55
from attrs import define, evolve, field
66

77

end_to_end_tests/docstrings-on-attributes-golden-record/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include = ["my_test_api_client/py.typed"]
1111

1212
[tool.poetry.dependencies]
1313
python = "^3.11"
14-
httpx = ">=0.23.1,<0.29.0"
14+
httpx2 = ">=2.5.0"
1515
attrs = ">=22.2.0"
1616

1717
[build-system]

end_to_end_tests/functional_tests/generated_code_execution/test_path_parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from unittest.mock import MagicMock
22

3-
import httpx
3+
import httpx2 as httpx
44
import pytest
55

66
from end_to_end_tests.functional_tests.helpers import (

end_to_end_tests/golden-record/README.md

Lines changed: 1 addition & 1 deletion

end_to_end_tests/golden-record/my_test_api_client/api/bodies/json_like.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from http import HTTPStatus
22
from typing import Any
33

4-
import httpx
4+
import httpx2 as httpx
55

66
from ... import errors
77
from ...client import AuthenticatedClient, Client

end_to_end_tests/golden-record/my_test_api_client/api/bodies/optional_body.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from http import HTTPStatus
22
from typing import Any
33

4-
import httpx
4+
import httpx2 as httpx
55

66
from ... import errors
77
from ...client import AuthenticatedClient, Client

end_to_end_tests/golden-record/my_test_api_client/api/bodies/post_bodies_multiple.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from http import HTTPStatus
22
from typing import Any
33

4-
import httpx
4+
import httpx2 as httpx
55

66
from ... import errors
77
from ...client import AuthenticatedClient, Client

end_to_end_tests/golden-record/my_test_api_client/api/bodies/refs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from http import HTTPStatus
22
from typing import Any
33

4-
import httpx
4+
import httpx2 as httpx
55

66
from ... import errors
77
from ...client import AuthenticatedClient, Client

0 commit comments

Comments
 (0)