-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch HTTPConnection from http.client to urllib3.connection
This is required for compatibillity with urllib3 2.0+ Additionally we need the latest requests-mock release for proper route matching with the latest urllib3. This fixes #281 This fixes #287 Signed-off-by: Dan Čermák <[email protected]>
- Loading branch information
Showing
5 changed files
with
9 additions
and
15 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
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 |
---|---|---|
|
@@ -4,5 +4,5 @@ requests>=2.24 | |
setuptools | ||
sphinx | ||
tomli>=1.2.3; python_version<'3.11' | ||
urllib3>=1.26.5,<2.0.0 | ||
urllib3 | ||
wheel |
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 |
---|---|---|
|
@@ -5,5 +5,5 @@ coverage | |
fixtures~=4.0.0 | ||
pylint | ||
pytest | ||
requests-mock | ||
requests-mock >= 1.11.0 | ||
tox |