Skip to content

Commit

Permalink
Upgrade tenacity to 8.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Feb 17, 2024
1 parent 42c34e3 commit 2176e6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions news/tenacity.vendor.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade tenacity to 8.2.3
2 changes: 1 addition & 1 deletion src/pip/_vendor/tenacity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def retry(func: WrappedFn) -> WrappedFn:

@t.overload
def retry(
sleep: t.Callable[[t.Union[int, float]], None] = sleep,
sleep: t.Callable[[t.Union[int, float]], t.Optional[t.Awaitable[None]]] = sleep,
stop: "StopBaseT" = stop_never,
wait: "WaitBaseT" = wait_none(),
retry: "RetryBaseT" = retry_if_exception_type(),
Expand Down
2 changes: 1 addition & 1 deletion src/pip/_vendor/vendor.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rich==13.7.0
resolvelib==1.0.1
setuptools==69.0.3
six==1.16.0
tenacity==8.2.2
tenacity==8.2.3
tomli==2.0.1
truststore==0.8.0
webencodings==0.5.1

0 comments on commit 2176e6d

Please sign in to comment.