This is an automated email from the ASF dual-hosted git repository. altay pushed a commit to branch aaltay-patch-1 in repository https://gitbox.apache.org/repos/asf/beam.git
commit 67594cb5234ba6742ff1b7225c4ca8dadb309a4b Author: Ahmet Altay <[email protected]> AuthorDate: Fri Jan 8 15:16:35 2021 -0800 Add an upper limit to jupyter-client --- sdks/python/setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdks/python/setup.py b/sdks/python/setup.py index 059394a..95417ce 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -213,7 +213,9 @@ INTERACTIVE_BEAM_TEST = [ # notebok utils 'nbformat>=5.0.5,<6', 'nbconvert>=5.6.1,<6', - 'jupyter-client>=6.1.2,<7', + # TODO(ningk): Remove the upper limit once + # https://github.com/jupyter/jupyter_client/issues/597 is fixed. + 'jupyter-client>=6.1.2,<6.1.8', # headless chrome based integration tests 'selenium>=3.141.0,<4', 'needle>=0.5.0,<1',
