Skip to content

Commit be516c7

Browse files
authored
Resolve google-resumable-media package conflict (#529)
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
1 parent 9a865ce commit be516c7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
# Nucleus needs uptodate protocol buffer compiler (protoc).
3030
'protobuf>=3.6.1',
3131
'mmh3<2.6',
32-
'google-cloud-storage',
32+
# Refer to issue #528
33+
'google-cloud-storage<1.23.0',
3334
'pyfarmhash'
3435
]
3536

0 commit comments

Comments
 (0)