Skip to content

Commit

Permalink
[py]: Remove deprecated urllib3[secure] extras dependency (#10932)
Browse files Browse the repository at this point in the history
* Update setup.py

 pyOpenSSL and urllib3[secure] are deprecated in the upcoming release of (1.26.12)
Removed [secure] extra from the urllib3 dependencies

* Removed [secure] extra from urllib3 dependencies

pyOpenSSL and urllib3[secure] are deprecated in the upcoming release (1.26.12)
urllib3/urllib3#2680

* Removed urllib [secure]

Removed urllib3[secure] dependency
  • Loading branch information
fyunusa committed Aug 14, 2022
1 parent b1543cf commit 95f0cba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ py_wheel(
python_requires = "~=3.7",
python_tag = "py3",
requires = [
"urllib3[secure, socks]~=1.26",
"urllib3[socks]~=1.26",
"trio~=0.17",
"trio-websocket~=0.9",
],
Expand Down
2 changes: 1 addition & 1 deletion py/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
'selenium.webdriver.remote',
'selenium.webdriver.support', ],
'include_package_data': True,
'install_requires': ['urllib3[secure, socks]~=1.26', "trio~=0.17", "trio-websocket~=0.9"],
'install_requires': ["urllib3[socks]~=1.26", "trio~=0.17", "trio-websocket~=0.9"],
'zip_safe': False
}

Expand Down

0 comments on commit 95f0cba

Please sign in to comment.