From 8d5f9ec858dc876f4b4b1fbf5bc9fab58e81bab0 Mon Sep 17 00:00:00 2001 From: Anand Inguva Date: Wed, 30 Nov 2022 12:23:06 -0500 Subject: [PATCH] Add six to build-requirements.txt --- sdks/python/build-requirements.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdks/python/build-requirements.txt b/sdks/python/build-requirements.txt index 80ce36de8c8a..1a17eb29fa1f 100644 --- a/sdks/python/build-requirements.txt +++ b/sdks/python/build-requirements.txt @@ -18,6 +18,11 @@ # TODO(https://github.com/apache/beam/issues/20051): Consider PEP-517/PEP-518 instead of this file. setuptools +# grpcio-tools depends on grpcio and the grpcio>1.50.0 results in error(ImportModuleError six) +# when installing Apache Beam source via pip install -e . +# Adding six as part of build dependencies. +# https://github.com/apache/beam/issues/24432 +six wheel>=0.36.0 grpcio-tools==1.37.0