Skip to content

Commit

Permalink
chore: Upgrade httpx version (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin authored Jun 10, 2022
1 parent b861e8f commit 3653c65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install_requires =
appdirs-stubs>=0.1.0
async-property==0.2.1
cryptography>=3.4.0
httpx[http2]==0.21.3
httpx[http2]==0.23.0
pydantic[dotenv]==1.8.2
readerwriterlock==1.0.9
sqlparse>=0.4.2
Expand All @@ -51,7 +51,7 @@ dev =
pytest==6.2.5
pytest-asyncio
pytest-cov==3.0.0
pytest-httpx==0.18.0
pytest-httpx==0.21.0
pytest-mock==3.6.1
pytest-timeout==2.1.0
pytest-xdist==2.5.0
Expand Down
2 changes: 1 addition & 1 deletion src/firebolt/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(
self._api_endpoint = URL(fix_url_schema(api_endpoint))
super().__init__(*args, auth=auth, **kwargs)

def _build_auth(self, auth: AuthTypes) -> Optional[Auth]:
def _build_auth(self, auth: Optional[AuthTypes]) -> Optional[Auth]:
"""Create Auth object based on auth provided.
Overrides ``httpx.Client._build_auth``
Expand Down

0 comments on commit 3653c65

Please sign in to comment.