Skip to content

Commit 6733a1b

Browse files
[build] Move python version to a variable to be shared about
1 parent 61dd966 commit 6733a1b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

py/BUILD.bazel

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ load("//common:defs.bzl", "copy_file")
66
load("//py:defs.bzl", "py_test_suite")
77
load("//py/private:browsers.bzl", "BROWSERS")
88

9+
SE_VERSION = "4.0.0"
10+
911
BROWSER_VERSIONS = [
1012
"v85",
1113
"v93",
@@ -105,10 +107,6 @@ py_package(
105107
deps = [":selenium"],
106108
)
107109

108-
pkg_tar(
109-
110-
)
111-
112110
py_wheel(
113111
name = "selenium-wheel",
114112
classifiers = [
@@ -139,7 +137,7 @@ py_wheel(
139137
strip_path_prefixes = [
140138
"py",
141139
],
142-
version = "4.0.0",
140+
version = SE_VERSION,
143141
visibility = ["//visibility:public"],
144142
deps = [
145143
":selenium-pkg",

0 commit comments

Comments
 (0)