Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
No build reason found for SLE-Module-Basesystem:aarch64
SUSE:SLE-15-SP4:Update
python-responses.30661
636-urllib3-2-compat.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 636-urllib3-2-compat.patch of Package python-responses.30661
--- CHANGES | 6 ++++++ README.rst | 2 +- responses/tests/test_responses.py | 9 +++++---- setup.py | 4 ++-- 4 files changed, 14 insertions(+), 7 deletions(-) --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +0.23.2 +------ + +* Updated dependency to urllib3>=2 and requests>=2.30.0. See #635 + + 0.23.1 ------ --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ A utility library for mocking out the `` .. note:: - Responses requires Python 3.7 or newer, and requests >= 2.22.0 + Responses requires Python 3.7 or newer, and requests >= 2.30.0 Table of Contents --- a/responses/tests/test_responses.py +++ b/responses/tests/test_responses.py @@ -1498,9 +1498,10 @@ def test_auto_calculate_content_length_d headers={"Content-Length": "2"}, auto_calculate_content_length=True, ) - resp = requests.get(url) - assert_response(resp, "test") - assert resp.headers["Content-Length"] == "2" + with pytest.raises(ChunkedEncodingError) as excinfo: + requests.get(url) + + assert "IncompleteRead(4 bytes read, -2 more expected)" in str(excinfo.value) run() assert_reset() @@ -2416,7 +2417,7 @@ class TestMaxRetry: total=total, backoff_factor=0.1, status_forcelist=[500], - method_whitelist=["GET", "POST", "PATCH"], + allowed_methods=["GET", "POST", "PATCH"], raise_on_status=raise_on_status, ) ) --- a/setup.py +++ b/setup.py @@ -17,8 +17,8 @@ from setuptools.command.test import test setup_requires = [] install_requires = [ - "requests>=2.22.0,<3.0", - "urllib3>=1.25.10", + "requests>=2.23.0,<3.0", + "urllib3>=2.0.0,<3.0", "pyyaml", "types-PyYAML", "typing_extensions; python_version < '3.8'",
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor