From 40f3de2c0726983c7c41200eddd479ceec00be5e Mon Sep 17 00:00:00 2001 From: Jon Ross-Perkins Date: Thu, 6 Feb 2025 10:51:12 -0800 Subject: [PATCH] Remove deprecated python_version setting (#4905) --- bazel/version/BUILD | 1 - github_tools/BUILD | 3 --- 2 files changed, 4 deletions(-) diff --git a/bazel/version/BUILD b/bazel/version/BUILD index 9806c32b7c34..faa6266639ac 100644 --- a/bazel/version/BUILD +++ b/bazel/version/BUILD @@ -10,7 +10,6 @@ package(default_visibility = ["//toolchain/install:__pkg__"]) py_binary( name = "gen_tmpl", srcs = ["gen_tmpl.py"], - python_version = "PY3", ) # Several flags are provided for customizing the exact version used for the diff --git a/github_tools/BUILD b/github_tools/BUILD index 366f615bf2fe..f73cca613742 100644 --- a/github_tools/BUILD +++ b/github_tools/BUILD @@ -22,14 +22,12 @@ py_test( name = "github_helpers_test", size = "small", srcs = ["github_helpers_test.py"], - python_version = "PY3", deps = [":github_helpers"], ) py_binary( name = "pr_comments", srcs = ["pr_comments.py"], - python_version = "PY3", deps = ["github_helpers"], ) @@ -37,6 +35,5 @@ py_test( name = "pr_comments_test", size = "small", srcs = ["pr_comments_test.py"], - python_version = "PY3", deps = [":pr_comments"], )