From 62cb1853de97a96981ee82d47a902c4e4980896c Mon Sep 17 00:00:00 2001 From: Jon Brandvein Date: Mon, 22 Jul 2019 16:17:27 -0400 Subject: [PATCH] Work around breakage in a dep of the examples 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 #205. --- examples/boto/requirements.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/boto/requirements.txt b/examples/boto/requirements.txt index 2e58c78db0..b890060967 100644 --- a/examples/boto/requirements.txt +++ b/examples/boto/requirements.txt @@ -1 +1,4 @@ boto3==1.4.7 +# Release 0.15 appears to have a broken wheel. +# See https://github.com/bazelbuild/rules_python/issues/205. +docutils<0.15