Closed pyup-bot closed 7 years ago
There's a new version of requests available. You are currently using 2.14.2. I have updated it to 2.16.2
These links might come in handy: PyPI | Changelog | Homepage
2.16.2 +++++++++++++++++++ Further restored the requests.packages namespace for compatibility reasons. No code modification (noted below) should be neccessary any longer. 2.16.1 +++++++++++++++++++ Restored the requests.packages namespace for compatibility reasons. Bugfix for urllib3 version parsing. Note: code that was written to import against the requests.packages namespace previously will have to import code that rests at this module-level now. For example:: from requests.packages.urllib3.poolmanager import PoolManager Will need to be re-written to be:: from requests.packages import urllib3 urllib3.poolmanager.PoolManager Or, even better:: from urllib3.poolmanager import PoolManager 2.16.0 +++++++++++++++++++ Unvendor ALL the things! 2.15.1 +++++++++++++++++++ Everyone makes mistakes. 2.15.0 +++++++++++++++++++ Improvements Introduction of the Response.next property, for getting the next PreparedResponse from a redirect chain (when allow_redirects=False). Internal refactoring of __version__ module. Bugfixes Restored once-optional parameter for requests.utils.get_environ_proxies().
+++++++++++++++++++
requests.packages
No code modification (noted below) should be neccessary any longer.
urllib3
Note: code that was written to import against the requests.packages namespace previously will have to import code that rests at this module-level now.
For example::
from requests.packages.urllib3.poolmanager import PoolManager
Will need to be re-written to be::
from requests.packages import urllib3 urllib3.poolmanager.PoolManager
Or, even better::
from urllib3.poolmanager import PoolManager
Improvements
Response.next
PreparedResponse
allow_redirects=False
__version__
Bugfixes
requests.utils.get_environ_proxies()
Got merge conflicts? Close this PR and delete the branch. I'll create a new PR for you.
Happy merging! 🤖
There's a new version of requests available. You are currently using 2.14.2. I have updated it to 2.16.2
These links might come in handy: PyPI | Changelog | Homepage
Changelog
Got merge conflicts? Close this PR and delete the branch. I'll create a new PR for you.
Happy merging! 🤖