Skip to content

Commit

Permalink
Bump up urllib3 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlycoconuts committed Oct 12, 2023
1 parent e4ba52f commit 137a914
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"python_dateutil>=2.5.3",
"PyYAML>=5.4",
"six>=1.10",
"urllib3>=1.23",
"urllib3>=1.26",
"numpy<=1.23.5", # Temporary pin numpy due to https://numpy.org/doc/stable/release/1.20.0-notes.html#numpy-1-20-0-release-notes
"caraml-auth-google==0.0.0.post7",
]
Expand Down
2 changes: 1 addition & 1 deletion python/sdk/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def requests():
retry_strategy = Retry(
total=5,
status_forcelist=[429, 500, 502, 503, 504, 404],
method_whitelist=["POST"],
allowed_methods=["POST"],
backoff_factor=0.5,
)
adapter = HTTPAdapter(max_retries=retry_strategy)
Expand Down

0 comments on commit 137a914

Please sign in to comment.