Skip to content

Commit bdda63c

Browse files
committed
Upgrade Requests to 1.2.3; #43
This repins requests in requirements.txt. The change is so minor that I can't imagine Requests 1.1.0 wouldn't still work, but it seemed better to stick with pinning and let advanced users manually use an older Requests version as necessary.
1 parent 82670e5 commit bdda63c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

balanced/http_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def handle_redirect(response):
6060
redirection.redirect_uri = response.headers['Location']
6161
raise redirection
6262

63-
def wrapper(response):
63+
def wrapper(response, **kwargs):
6464

6565
try:
6666
response.raise_for_status()

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ certifi==0.0.8
22
chardet==1.0.1
33
simplejson==2.3.2
44
iso8601==0.1.4
5-
requests==1.1.0
5+
requests==1.2.3
66
mock>=0.8,<0.9

0 commit comments

Comments
 (0)