This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 92b7025 [BEAM-11255] Adding upper bound on urllib3 dependency.
new a041611 Merge pull request #13321 from [BEAM-11255] Adding upper
bound on urllib3 dependency
92b7025 is described below
commit 92b7025386382c835863774ff036e171f94bb9c4
Author: Pablo Estrada <[email protected]>
AuthorDate: Thu Nov 12 11:29:12 2020 -0800
[BEAM-11255] Adding upper bound on urllib3 dependency.
---
sdks/python/setup.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index b2ffb96..ac79b86 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -153,6 +153,8 @@ REQUIRED_PACKAGES = [
'pytz>=2018.3',
'requests>=2.24.0,<3.0.0',
'typing-extensions>=3.7.0,<3.8.0',
+ # TODO(BEAM-11255): urllib3 upper bound added to fix incompatibility.
+ 'urllib3<1.26',
]
# [BEAM-8181] pyarrow cannot be installed on 32-bit Windows platforms.