diff --git a/py/BUILD.bazel b/py/BUILD.bazel index b4999b6607fe0..34b8eb8699012 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -62,7 +62,7 @@ compile_pip_requirements( ], ) -SE_VERSION = "4.29.0.202501201850" +SE_VERSION = "4.28.1" BROWSER_VERSIONS = [ "v85", diff --git a/py/CHANGES b/py/CHANGES index 7426a5b1f8749..3219a596db008 100644 --- a/py/CHANGES +++ b/py/CHANGES @@ -1,3 +1,6 @@ +Selenium 4.28.1 +* [py] Fix installing most of the data from source distributions + Selenium 4.28.0 * Add CDP for Chrome 132 and remove 129 * [py] fix packaging (#14823) diff --git a/py/docs/source/conf.py b/py/docs/source/conf.py index fd7f04c315180..21491eec081d8 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.29' +version = '4.28' # The full version, including alpha/beta/rc tags. -release = '4.29.0.202501201850' +release = '4.28.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py/pyproject.toml b/py/pyproject.toml index 9afa6a63c7f8a..e6214bf16dd75 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "selenium" -version = "4.29.0.202501201850" +version = "4.28.1" license = { text = "Apache 2.0" } description = "Official Python bindings for Selenium WebDriver." readme = "README.rst" @@ -40,7 +40,7 @@ zip-safe = false [tool.setuptools.packages.find] include = ["selenium*"] exclude = ["test*"] -namespaces = false +namespaces = true # include-package-data is `true` by default in pyproject.toml [[tool.setuptools-rust.bins]] @@ -54,7 +54,7 @@ Documentation = "https://www.selenium.dev/documentation/overview/" SourceCode = "https://github.com/SeleniumHQ/selenium/tree/trunk/py" [tool.setuptools.package-data] -selenium_package = [ +"*" = [ "*.py", "*.rst", "*.json", diff --git a/py/selenium/__init__.py b/py/selenium/__init__.py index bbdf061facf86..fedd241d71f5e 100644 --- a/py/selenium/__init__.py +++ b/py/selenium/__init__.py @@ -16,4 +16,4 @@ # under the License. -__version__ = "4.29.0.202501201850" +__version__ = "4.28.1" diff --git a/py/selenium/webdriver/__init__.py b/py/selenium/webdriver/__init__.py index 82f7bd618bfa1..80e68e8930fb3 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.29.0.202501201850" +__version__ = "4.28.1" # We need an explicit __all__ because the above won't otherwise be exported. __all__ = [