aboutsummaryrefslogtreecommitdiff
path: root/python/pip_install/tools/wheel_installer/BUILD.bazel
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2024-01-17 18:02:18 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-01-17 18:02:18 +0000
commit6954130f57eb9a56a82d4146aeafb16ef30f907a (patch)
treeacdcc148cabfb6f8242a6c83e37625eeaea4e628 /python/pip_install/tools/wheel_installer/BUILD.bazel
parent1508c18d9e27325a8d9c574a90d205e0a1d8a78f (diff)
downloadbazelbuild-rules_python-6954130f57eb9a56a82d4146aeafb16ef30f907a.tar.gz
Revert "Upgrade bazelbuild-rules_python to 0.28.0"
This reverts commit 1508c18d9e27325a8d9c574a90d205e0a1d8a78f. Reason for revert: breaks build, not caught by treehugger Change-Id: Id40b5eefc5f4f0f6e4a0122fbfa53b0c3c265985
Diffstat (limited to 'python/pip_install/tools/wheel_installer/BUILD.bazel')
-rw-r--r--python/pip_install/tools/wheel_installer/BUILD.bazel27
1 files changed, 1 insertions, 26 deletions
diff --git a/python/pip_install/tools/wheel_installer/BUILD.bazel b/python/pip_install/tools/wheel_installer/BUILD.bazel
index a396488..54bbc46 100644
--- a/python/pip_install/tools/wheel_installer/BUILD.bazel
+++ b/python/pip_install/tools/wheel_installer/BUILD.bazel
@@ -4,16 +4,14 @@ load("//python/pip_install:repositories.bzl", "requirement")
py_library(
name = "lib",
srcs = [
- "arguments.py",
"namespace_pkgs.py",
"wheel.py",
"wheel_installer.py",
],
- visibility = ["//third_party/rules_pycross/pycross/private:__subpackages__"],
deps = [
+ "//python/pip_install/tools/lib",
requirement("installer"),
requirement("pip"),
- requirement("packaging"),
requirement("setuptools"),
],
)
@@ -27,17 +25,6 @@ py_binary(
)
py_test(
- name = "arguments_test",
- size = "small",
- srcs = [
- "arguments_test.py",
- ],
- deps = [
- ":lib",
- ],
-)
-
-py_test(
name = "namespace_pkgs_test",
size = "small",
srcs = [
@@ -49,18 +36,6 @@ py_test(
)
py_test(
- name = "wheel_test",
- size = "small",
- srcs = [
- "wheel_test.py",
- ],
- data = ["//examples/wheel:minimal_with_py_package"],
- deps = [
- ":lib",
- ],
-)
-
-py_test(
name = "wheel_installer_test",
size = "small",
srcs = [