Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7e5adb0

Browse filesBrowse 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
Copy full SHA for 7e5adb0

File tree

1 file changed

+6
-1
lines changed
Filter options

1 file changed

+6
-1
lines changed

‎examples/boto/BUILD

Copy file name to clipboardExpand all lines: examples/boto/BUILD
+6-1
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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.