Skip to content

Commit

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

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

* chore: allow google-cloud-core < 3

* ci: add test dependency pytz

* ci: fix tests

* chore: lint

Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
busunkim96 and parthea committed Apr 6, 2022
1 parent ef00df5 commit ad8ba58
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion noxfile.py
Expand Up @@ -76,7 +76,7 @@ def default(session):
# Install all test dependencies, then install this package in-place.
session.install("asyncmock", "pytest-asyncio")

session.install("mock", "pytest", "pytest-cov")
session.install("mock", "pytest", "pytest-cov", "pytz")
session.install("-e", ".")

# Run py.test against the unit tests.
Expand Down Expand Up @@ -150,6 +150,7 @@ def system(session):
"mock",
"pytest",
"google-cloud-testutils",
"pytz",
)
session.install("-e", ".[tracing]")

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -29,8 +29,8 @@
# 'Development Status :: 5 - Production/Stable'
release_status = "Development Status :: 5 - Production/Stable"
dependencies = [
"google-api-core[grpc] >= 1.22.0, < 2.0.0dev",
"google-cloud-core >= 1.4.1, < 2.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, < 3.0dev",
"grpc-google-iam-v1 >= 0.12.3, < 0.13dev",
"libcst >= 0.2.5",
"proto-plus == 1.11.0",
Expand Down

0 comments on commit ad8ba58

Please sign in to comment.