Skip to content

Commit de56f6b

Browse files
committedSep 20, 2017
[BEAM-2964] Exclude incompatible six release.
Upstream bugs being tracked at google/apitools#175 and benjaminp/six#210
1 parent 656deff commit de56f6b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎sdks/python/setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,9 @@ def get_version():
113113
REQUIRED_TEST_PACKAGES = [
114114
'pyhamcrest>=1.9,<2.0',
115115
# Six required by nose plugins management.
116-
'six>=1.9',
116+
# Six 1.11.0 incompatible with apitools.
117+
# TODO(BEAM-2964): Remove the upper bound.
118+
'six>=1.9,<1.11',
117119
]
118120

119121
GCP_REQUIREMENTS = [

0 commit comments

Comments
 (0)
Please sign in to comment.