8000 Add six as explicit dep of boto_test (#131) · sorensenjs/rules_python@7e5adb0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7e5adb0

Browse files
authored
Add six as explicit dep of boto_test (bazel-contrib#131)
This fixes the breakage in bazel-contrib#98 by working around bazel-contrib#70.
1 parent 72ca7ba commit 7e5adb0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

examples/boto/BUILD

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,10 @@ load("//python:python.bzl", "py_test")
2121
py_test(
2222
name = "boto_test",
2323
srcs = ["boto_test.py"],
24-
deps = [requirement("boto3")],
24+
deps = [
25+
requirement("boto3"),
26+
# six is a transitive dependency via python-dateutil. Explicitly depend
27+
# on it to work around issue #70; see issue #98.
28+
requirement("six"),
29+
],
2530
)

0 commit comments

Comments
 (0)
0