-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Deleted old files, no longer used. * Adjusted the exports from __init__.py. * Use tenacity for retries, and always return response object from HTTP requests, rather than the payload of the response object. * Add decorators for raising exceptions on 'failed' http requests, and for unpacking json content. * Do not set `Content-Length` header in `_blob_client.py`. * Bumped httpx, and added tenacity. * Bump minimum Python version to 3.8 * Remove Python 3.7 from test matrix. --------- Co-authored-by: Raymond Wiker <[email protected]>
- Loading branch information
Showing
11 changed files
with
120 additions
and
1,521 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ msal-extensions>=1.0.0 | |
PyYAML>=5.4 | ||
setuptools>=49.2.1 | ||
pyjwt>=2.4.0 | ||
httpx>=0.24.1 | ||
httpx>=0.25.0 | ||
tenacity>=8.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
from ._call_sumo_api import CallSumoApi | ||
from .sumo_client import SumoClient | ||
|
||
__all__ = ["CallSumoApi", "SumoClient"] | ||
__all__ = ["SumoClient"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.