10000 Work around breakage in a dep of the examples (#206) · assetnote/rules_python@9ed93f8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9ed93f8

Browse files
authored
Work around breakage in a dep of the examples (bazel-contrib#206)
The boto example indirectly requires docutils, but the docutils-0.15.post1 release appears to have a broken wheel: its dist-info directory omits the `post1` suffix which is part of the version identifier. We simply prohibit this particular release in requirements.txt. Fixes bazel-contrib#205.
1 parent 3886b1a commit 9ed93f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

examples/boto/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
boto3==1.4.7
2+
# Release 0.15 appears to have a broken wheel.
3+
# See https://github.com/bazelbuild/rules_python/issues/205.
4+
docutils<0.15

0 commit comments

Comments
 (0)
0