From 6733a1b2f27fbe37cfd75f1bd553a98b18d6ea95 Mon Sep 17 00:00:00 2001 From: AutomatedTester Date: Fri, 15 Oct 2021 15:22:24 +0100 Subject: [PATCH] [build] Move python version to a variable to be shared about --- py/BUILD.bazel | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/py/BUILD.bazel b/py/BUILD.bazel index ada6017851930..26775f3baabe9 100644 --- a/py/BUILD.bazel +++ b/py/BUILD.bazel @@ -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", @@ -105,10 +107,6 @@ py_package( deps = [":selenium"], ) -pkg_tar( - -) - py_wheel( name = "selenium-wheel", classifiers = [ @@ -139,7 +137,7 @@ py_wheel( strip_path_prefixes = [ "py", ], - version = "4.0.0", + version = SE_VERSION, visibility = ["//visibility:public"], deps = [ ":selenium-pkg",