Skip to content

Commit 54809a7

Browse files
[py] Bump Python Bindings to 4.4.2
1 parent 35adf8b commit 54809a7

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

py/BUILD.bazel

Lines changed: 2 additions & 1 deletion
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.1"
18+
SE_VERSION = "4.4.2"
1919

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

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.1"
19+
__version__ = "4.4.2"

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.1'
39+
__version__ = '4.4.2'
4040

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

py/setup.py

Lines changed: 1 addition & 1 deletion
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.1",
30+
'version': "4.4.2",
3131
'license': 'Apache 2.0',
3232
'description': 'Python bindings for Selenium',
3333
'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),

0 commit comments

Comments
 (0)