Skip to content

Commit 88ff058

Browse files
committed
[py] bump version to 4.1.5
1 parent 56a35d9 commit 88ff058

7 files changed

Lines changed: 9 additions & 6 deletions

File tree

py/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ load("//common:defs.bzl", "copy_file")
77
load("//py:defs.bzl", "py_test_suite")
88
load("//py/private:browsers.bzl", "BROWSERS")
99

10-
SE_VERSION = "4.1.4"
10+
SE_VERSION = "4.1.5"
1111

1212
BROWSER_VERSIONS = [
1313
"v85",

py/CHANGES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.1.5
2+
* use `typing_extensions` to be compatible with `py37` (#10613)
3+
14
Selenium 4.1.4
25

36
* Hook options class in safari driver (#10433)

py/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def driver(request):
7474
kwargs = {}
7575

7676
try:
77-
driver_class = request.param.capitalize()
77+
driver_class = "Chrome" #request.param.capitalize()
7878
except AttributeError:
7979
raise Exception('This test requires a --driver to be specified.')
8080

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you have `pip <https://pip.pypa.io/>`_ on your system, you can simply install
3535

3636
pip install -U selenium
3737

38-
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.1.4.tar.gz), unarchive it, and run::
38+
Alternately, you can download the source distribution from `PyPI <https://pypi.org/project/selenium/#files>`_ (e.g. selenium-4.1.5.tar.gz), unarchive it, and run::
3939

4040
python setup.py install
4141

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.1.4"
19+
__version__ = "4.1.5"

py/selenium/webdriver/__init__.py

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

40-
__version__ = '4.1.4'
40+
__version__ = '4.1.5'

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.1.4",
30+
'version': "4.1.5",
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)