Skip to content

Commit

Permalink
Remove srcs_version and python_version attributes, as they alread…
Browse files Browse the repository at this point in the history
…y default to `"PY3"`

PiperOrigin-RevId: 723634950
Change-Id: I4112b5120fc8c315bce04ca9816406a66fab2d6f
  • Loading branch information
oprypin authored and copybara-github committed Feb 5, 2025
1 parent eddddbb commit 3a5a9ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/validations/validate_manifest/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,12 @@ licenses(["notice"])
py_library(
name = "validate_manifest_lib",
srcs = ["validate_manifest.py"],
srcs_version = "PY3",
deps = ["@bazel_tools//third_party/py/abseil"],
)

py_test(
name = "validate_manifest_test",
srcs = ["validate_manifest_test.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
":validate_manifest_lib",
],
Expand All @@ -32,7 +29,6 @@ py_test(
py_binary(
name = "validate_manifest",
srcs = ["validate_manifest.py"],
python_version = "PY3",
visibility = ["//visibility:public"],
deps = [
":validate_manifest_lib",
Expand Down
2 changes: 0 additions & 2 deletions test/bashunit/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ py_test(
"@bazel_tools//tools/bash/runfiles",
],
main = "unittest_test.py",
python_version = "PY3",
srcs_version = "PY3",
tags = [
"no_windows", # test runs bash scripts in a subprocess
],
Expand Down

0 comments on commit 3a5a9ae

Please sign in to comment.