From b6ca43058eded49e7d403c776bbe15dd9427c1b1 Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Mon, 4 Dec 2023 22:23:28 +0000 Subject: [PATCH 1/4] RM-109 remove upper bound grpcio --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b685757d2..6a9ed87af 100755 --- a/setup.py +++ b/setup.py @@ -118,7 +118,7 @@ def initialize_options(self) -> None: # However, downgrading pip does not seem to resolve it, so it # doesn't seem to have been caused by a pip upgrade. For now # we'll explicitly state the dependency for force the install: - 'grpcio<2.0dev,>=1.29.0', + 'grpcio>=1.29.0', ] pytest_dependencies = [ From 831e61d908f7b7b188a4ffccdbc9400b9ce9aebc Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Mon, 4 Dec 2023 23:16:31 +0000 Subject: [PATCH 2/4] RM-110 remove awscli upperbound --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6a9ed87af..886e1bd90 100755 --- a/setup.py +++ b/setup.py @@ -171,7 +171,7 @@ def initialize_options(self) -> None: aws_dependencies = [ - 'awscli>=1,<2', + 'awscli>=1', 'boto>=2,<3', 'boto3', 's3-concat>=0.1.7,<0.2' From 8926fa994aa26b3f72fb9f8459f9e6316b120368 Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Mon, 11 Dec 2023 10:21:41 -0500 Subject: [PATCH 3/4] RM-111 remove upper bound s3-concat --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 886e1bd90..2046b681b 100755 --- a/setup.py +++ b/setup.py @@ -174,7 +174,7 @@ def initialize_options(self) -> None: 'awscli>=1', 'boto>=2,<3', 'boto3', - 's3-concat>=0.1.7,<0.2' + 's3-concat>=0.1.7' ] + smart_open_dependencies gsheet_dependencies = [ From 0f1d6ada2e2e11ed2be4e47e7ad60ad29225a90b Mon Sep 17 00:00:00 2001 From: Tim Ryan Date: Mon, 11 Dec 2023 12:09:47 -0500 Subject: [PATCH 4/4] RM-112 remove upper bound oauth2client --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2046b681b..5cc02825b 100755 --- a/setup.py +++ b/setup.py @@ -180,7 +180,7 @@ def initialize_options(self) -> None: gsheet_dependencies = [ 'google', 'google_auth_httplib2', - 'oauth2client>=2.0.2,<2.1.0', + 'oauth2client>=2.0.2', 'PyOpenSSL' ] + google_api_client_dependencies