Skip to content

Commit 3653c65

Browse files
authored
chore: Upgrade httpx version (#176)
1 parent b861e8f commit 3653c65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ install_requires =
2828
appdirs-stubs>=0.1.0
2929
async-property==0.2.1
3030
cryptography>=3.4.0
31-
httpx[http2]==0.21.3
31+
httpx[http2]==0.23.0
3232
pydantic[dotenv]==1.8.2
3333
readerwriterlock==1.0.9
3434
sqlparse>=0.4.2
@@ -51,7 +51,7 @@ dev =
5151
pytest==6.2.5
5252
pytest-asyncio
5353
pytest-cov==3.0.0
54-
pytest-httpx==0.18.0
54+
pytest-httpx==0.21.0
5555
pytest-mock==3.6.1
5656
pytest-timeout==2.1.0
5757
pytest-xdist==2.5.0

src/firebolt/client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(
3838
self._api_endpoint = URL(fix_url_schema(api_endpoint))
3939
super().__init__(*args, auth=auth, **kwargs)
4040

41-
def _build_auth(self, auth: AuthTypes) -> Optional[Auth]:
41+
def _build_auth(self, auth: Optional[AuthTypes]) -> Optional[Auth]:
4242
"""Create Auth object based on auth provided.
4343
4444
Overrides ``httpx.Client._build_auth``

0 commit comments

Comments
 (0)