From ed3d8401bbadb8f277c046ddf19d5e5f13bdad48 Mon Sep 17 00:00:00 2001 From: Yong Zhang Date: Thu, 15 Jul 2021 09:33:17 +0800 Subject: [PATCH] Remove the `request` in the stream python client dependency --- Master Issue: #2752 *Motivation* As discussed at length in https://issues.apache.org/jira/browse/LEGAL-572 we found out that the chardet library used by requests library was a mandatory dependency to requests and since it has LGPL licence, we should not release any Apache Software with it. --- stream/clients/python/setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/stream/clients/python/setup.py b/stream/clients/python/setup.py index 0bd3a66a317..ace6611666a 100644 --- a/stream/clients/python/setup.py +++ b/stream/clients/python/setup.py @@ -27,7 +27,6 @@ release_status = 'Development Status :: 3 - Alpha' dependencies = [ 'protobuf>=3.0.0', - 'requests<3.0.0dev,>=2.18.0', 'setuptools>=34.0.0', 'six>=1.10.0', 'pytz',