Skip to content

Commit

Permalink
Filter out 'jeepney' and 'entrypoints' from homebrew resources
Browse files Browse the repository at this point in the history
This is a workaround for pypa/pip#6222. It should not be a permanent change.
  • Loading branch information
marstr committed Mar 9, 2019
1 parent 54b9fff commit ebf6a2a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/release/homebrew/docker/formula_generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def collect_resources() -> str:


def resource_filter(name: str) -> bool:
return not name.startswith('azure-cli') and name not in ('futures')
# TODO remove need for any filters and delete this method.
return not name.startswith('azure-cli') and name not in ('futures', 'jeepney', 'entrypoints')


def last_bottle_hash():
Expand Down

0 comments on commit ebf6a2a

Please sign in to comment.