From efd1ce1561556997c7a3143b4bf0d7864501f327 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Thu, 31 Oct 2024 19:42:30 +0100 Subject: [PATCH] [py] Bumping version for nightly --- py/BUILD.bazel | 2 +- py/docs/source/conf.py | 4 ++-- py/selenium/__init__.py | 2 +- py/selenium/webdriver/__init__.py | 2 +- py/setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index 621d8d5bffd15..ac44993213066 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -62,7 +62,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.26.1" +SE_VERSION = "4.27.0.dev202410311942" BROWSER_VERSIONS = [ "v85", diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index 1975da4428e7f..1d5148a0508fa 100644 --- a/py/docs/source/conf.py +++ b/py/docs/source/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = '4.26' +version = '4.27' # The full version, including alpha/beta/rc tags. -release = '4.26.1' +release = '4.27.0.dev202410311942' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index 5b008544cfc9c..e7ab5cc0b075e 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.26.1" +__version__ = "4.27.0.dev202410311942" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 22cfc3ba7a28c..b64471644e380 100644 --- a/py/selenium/webdriver/__init__.py +++ b/py/selenium/webdriver/__init__.py @@ -44,7 +44,7 @@ from .wpewebkit.service import Service as WPEWebKitService # noqa from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa -__version__ = "4.26.1" +__version__ = "4.27.0.dev202410311942" # We need an explicit __all__ because the above won't otherwise be exported. __all__ = [ diff --git a/py/setup.py b/py/setup.py index dd4449939f2c0..cd6b84b8e2c14 100755 --- a/py/setup.py +++ b/py/setup.py @@ -28,7 +28,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'selenium', - 'version': "4.26.1", + 'version': "4.27.0.dev202410311942", 'license': 'Apache 2.0', 'description': 'Official Python bindings for Selenium WebDriver.', 'long_description': open(join(abspath(dirname(__file__)), "README.rst")).read(),