Skip to content

Commit

Permalink
fix(deps): pin 'api,cloud}-core', 'auth' to allow 2.x versions on Pyt…
Browse files Browse the repository at this point in the history
…hon 3 (#512)
  • Loading branch information
tseaver committed Jul 20, 2021
1 parent a0f2310 commit 4d7500e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Expand Up @@ -28,9 +28,12 @@
# 'Development Status :: 5 - Production/Stable'
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"google-auth >= 1.24.0, < 2.0dev",
"google-cloud-core >= 1.6.0, < 2.0dev",
"google-resumable-media >= 1.3.0, < 2.0dev",
"google-auth >= 1.24.0, < 2.0dev; python_version<'3.0'",
"google-auth >= 1.24.0, < 3.0dev; python_version>='3.6'",
"google-cloud-core >= 1.6.0, < 2.0dev; python_version<'3.0'",
"google-cloud-core >= 1.6.0, < 3.0dev; python_version>='3.6'",
"google-resumable-media >= 1.3.0, < 2.0dev; python_version<'3.0'",
"google-resumable-media >= 1.3.0, < 3.0dev; python_version>='3.6'",
"requests >= 2.18.0, < 3.0.0dev",
"googleapis-common-protos < 1.53.0; python_version<'3.0'",
]
Expand Down

0 comments on commit 4d7500e

Please sign in to comment.