aboutsummaryrefslogtreecommitdiff
path: root/tools/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'tools/BUILD.bazel')
-rw-r--r--tools/BUILD.bazel5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/BUILD.bazel b/tools/BUILD.bazel
index d25caa7..8ef6a86 100644
--- a/tools/BUILD.bazel
+++ b/tools/BUILD.bazel
@@ -4,14 +4,15 @@ py_library(
name = "gbench",
srcs = glob(["gbench/*.py"]),
deps = [
- requirement("numpy"),
- requirement("scipy"),
+ requirement("numpy"),
+ requirement("scipy"),
],
)
py_binary(
name = "compare",
srcs = ["compare.py"],
+ imports = ["."],
python_version = "PY3",
deps = [
":gbench",