Skip to content

Commit

Permalink
Resolve google-resumable-media package conflict
Browse files Browse the repository at this point in the history
This is casued by the conflict between:
* google-cloud-storage 1.23.0
* and google-cloud-bigquery < 1.22.0

More details here:
googleapis/google-cloud-python#9786

Currently Beam is pinned to google-cloud-bigquery 1.17.0

https://github.com/apache/beam/blob/edf01c456d4ffbd17e5eee9a0dc2acb5693ed1f6/sdks/python/setup.py#L162

We have to pin to google-cloud-storage<1.23.0 until Beam updates to
google-cloud-bigquery<=1.22.0
  • Loading branch information
samanvp committed Nov 14, 2019
1 parent 9a865ce commit d773708
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -29,7 +29,8 @@
# Nucleus needs uptodate protocol buffer compiler (protoc).
'protobuf>=3.6.1',
'mmh3<2.6',
'google-cloud-storage',
# Refer to issue #528
'google-cloud-storage<1.23.0',
'pyfarmhash'
]

Expand Down

0 comments on commit d773708

Please sign in to comment.