Browse Source

Remove deprecated python_version setting (#4905)

Jon Ross-Perkins 1 year ago
parent
commit
40f3de2c07
2 changed files with 0 additions and 4 deletions
  1. 0 1
      bazel/version/BUILD
  2. 0 3
      github_tools/BUILD

+ 0 - 1
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

+ 0 - 3
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"],
 )