Skip to content

Commit

Permalink
fix(deps): require google-api-core >= 1.31.5, >= 2.3.2 on v1 release (#…
Browse files Browse the repository at this point in the history
…550)

* chore(deps): allow google-api-core v2 on v1 release

* ci: fix docs build

* ci: remove docfx session

* chore: lint

* ci: use click <8.1.0

Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
busunkim96 and parthea committed Apr 5, 2022
1 parent a8c8dca commit dadf010
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Expand Up @@ -41,7 +41,7 @@ def lint(session):
Returns a failure if the linters find linting errors or sufficiently
serious code quality issues.
"""
session.install("flake8", BLACK_VERSION)
session.install("flake8", BLACK_VERSION, "click<8.1.0")
session.run(
"black", "--check", *BLACK_PATHS,
)
Expand All @@ -58,7 +58,7 @@ def blacken(session):
That run uses an image that doesn't have 3.6 installed. Before updating this
check the state of the `gcp_ubuntu_config` we use for that Kokoro run.
"""
session.install(BLACK_VERSION)
session.install(BLACK_VERSION, "click<8.1.0")
session.run(
"black", *BLACK_PATHS,
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -25,7 +25,7 @@
version = "1.9.0"
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"google-api-core[grpc] >= 1.14.0, < 2.0.0dev",
"google-api-core[grpc] >= 1.31.5, <3.0.0dev,!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0",
"google-cloud-core >= 1.4.1, < 2.0dev",
"pytz",
]
Expand Down

0 comments on commit dadf010

Please sign in to comment.