Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rm 112 remove upper bound on oauth2client #264

Merged
merged 4 commits into from
Dec 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -171,16 +171,16 @@ def initialize_options(self) -> None:


aws_dependencies = [
'awscli>=1,<2',
'awscli>=1',
'boto>=2,<3',
'boto3',
's3-concat>=0.1.7,<0.2'
's3-concat>=0.1.7'
] + smart_open_dependencies

gsheet_dependencies = [
'google',
'google_auth_httplib2',
'oauth2client>=2.0.2,<2.1.0',
'oauth2client>=2.0.2',
'PyOpenSSL'
] + google_api_client_dependencies

Expand Down