Skip to content

Commit bb0b3b2

Browse files
authored
[py]: loosen required versions of "certifi" (#10958)
* Update explicit dependency for "certifi" to remove upper bound * selenium version "4.4.3" * Update explicit dependency for "certifi" to remove upper bound * selenium version "4.4.3" * Update install_requires in setup.py with certifi
1 parent 59d7bae commit bb0b3b2

5 files changed

Lines changed: 14 additions & 6 deletions

File tree

py/BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ compile_pip_requirements(
1515
requirements_txt = ":requirements_lock.txt",
1616
)
1717

18-
SE_VERSION = "4.4.2"
18+
SE_VERSION = "4.4.3"
1919

2020
BROWSER_VERSIONS = [
2121
"v85",
@@ -170,7 +170,7 @@ py_wheel(
170170
"urllib3[socks]~=1.26",
171171
"trio~=0.17",
172172
"trio-websocket~=0.9",
173-
"certifi~=2021.10.8",
173+
"certifi>=2021.10.8",
174174
],
175175
strip_path_prefixes = [
176176
"py/",

py/CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.4.3
2+
* Update explicit dependency for certifi to remove upper bound (#10956)
3+
14
Selenium 4.4.2
25
* Add explicit dependency for certifi (#10953)
36

py/selenium/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.4.2"
19+
__version__ = "4.4.3"

py/selenium/webdriver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .common.proxy import Proxy # noqa
3737
from .common.keys import Keys # noqa
3838

39-
__version__ = '4.4.2'
39+
__version__ = '4.4.3'
4040

4141
# We need an explicit __all__ because the above won't otherwise be exported.
4242
__all__ = [

py/setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup_args = {
2828
'cmdclass': {'install': install},
2929
'name': 'selenium',
30-
'version': "4.4.2",
30+
'version': "4.4.3",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),
@@ -70,7 +70,12 @@
7070
'selenium.webdriver.remote',
7171
'selenium.webdriver.support', ],
7272
'include_package_data': True,
73-
'install_requires': ["urllib3[socks]~=1.26", "trio~=0.17", "trio-websocket~=0.9"],
73+
'install_requires': [
74+
"urllib3[socks]~=1.26",
75+
"trio~=0.17",
76+
"trio-websocket~=0.9",
77+
"certifi>=2021.10.8",
78+
],
7479
'zip_safe': False
7580
}
7681

0 commit comments

Comments
 (0)