Remove deprecated python_version setting (#4905)

This commit is contained in:
Jon Ross-Perkins
2025-02-06 18:51:12 +00:00
committed by GitHub
parent 7d6cd3da6d
commit 40f3de2c07
2 changed files with 0 additions and 4 deletions
-3
View File
@@ -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"],
)