Skip to content

Commit 0f497d7

Browse files
mgornyVietND96
andauthored
[py] Fix installing most of the data from source distributions (#15128)
Signed-off-by: Viet Nguyen Duc <[email protected]> Co-authored-by: Viet Nguyen Duc <[email protected]>
1 parent 643d9d1 commit 0f497d7

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

py/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ compile_pip_requirements(
6262
],
6363
)
6464

65-
SE_VERSION = "4.29.0.202501201850"
65+
SE_VERSION = "4.28.1"
6666

6767
BROWSER_VERSIONS = [
6868
"v85",

py/CHANGES

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Selenium 4.28.1
2+
* [py] Fix installing most of the data from source distributions
3+
14
Selenium 4.28.0
25
* Add CDP for Chrome 132 and remove 129
36
* [py] fix packaging (#14823)

py/docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '4.29'
59+
version = '4.28'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '4.29.0.202501201850'
61+
release = '4.28.1'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

py/pyproject.toml

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "selenium"
7-
version = "4.29.0.202501201850"
7+
version = "4.28.1"
88
license = { text = "Apache 2.0" }
99
description = "Official Python bindings for Selenium WebDriver."
1010
readme = "README.rst"
@@ -40,9 +40,12 @@ zip-safe = false
4040
[tool.setuptools.packages.find]
4141
include = ["selenium*"]
4242
exclude = ["test*"]
43-
namespaces = false
43+
namespaces = true
4444
# include-package-data is `true` by default in pyproject.toml
4545

46+
[[tool.setuptools-rust.ext-modules]]
47+
target = "selenium.webdriver.common.selenium-manager"
48+
4649
[[tool.setuptools-rust.bins]]
4750
target = "selenium.webdriver.common.selenium-manager"
4851

@@ -54,7 +57,7 @@ Documentation = "https://www.selenium.dev/documentation/overview/"
5457
SourceCode = "https://github.com/SeleniumHQ/selenium/tree/trunk/py"
5558

5659
[tool.setuptools.package-data]
57-
selenium_package = [
60+
"*" = [
5861
"*.py",
5962
"*.rst",
6063
"*.json",

py/selenium/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# under the License.
1717

1818

19-
__version__ = "4.29.0.202501201850"
19+
__version__ = "4.28.1"

py/selenium/webdriver/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
from .wpewebkit.service import Service as WPEWebKitService # noqa
4545
from .wpewebkit.webdriver import WebDriver as WPEWebKit # noqa
4646

47-
__version__ = "4.29.0.202501201850"
47+
__version__ = "4.28.1"
4848

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

0 commit comments

Comments
 (0)