Skip to content

Commit

Permalink
[build] Move python version to a variable to be shared about
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Oct 20, 2021
1 parent 61dd966 commit 6733a1b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions py/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ load("//common:defs.bzl", "copy_file")
load("//py:defs.bzl", "py_test_suite")
load("//py/private:browsers.bzl", "BROWSERS")

SE_VERSION = "4.0.0"

BROWSER_VERSIONS = [
"v85",
"v93",
Expand Down Expand Up @@ -105,10 +107,6 @@ py_package(
deps = [":selenium"],
)

pkg_tar(

)

py_wheel(
name = "selenium-wheel",
classifiers = [
Expand Down Expand Up @@ -139,7 +137,7 @@ py_wheel(
strip_path_prefixes = [
"py",
],
version = "4.0.0",
version = SE_VERSION,
visibility = ["//visibility:public"],
deps = [
":selenium-pkg",
Expand Down

0 comments on commit 6733a1b

Please sign in to comment.