Skip to content

Commit

Permalink
Bump minimum grpcio version to v1.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lidizheng committed Aug 3, 2021
1 parent ea29e22 commit 93fc93f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions noxfile.py
Expand Up @@ -80,7 +80,7 @@ def default(session):
)

# Install all test dependencies, then install this package in-place.
session.install("mock", "pytest", "pytest-cov", "grpcio >= 1.0.2")
session.install("mock", "pytest", "pytest-cov", "grpcio >= 1.30.0")
session.install("-e", ".", "-c", constraints_path)

pytest_args = [
Expand Down Expand Up @@ -142,7 +142,7 @@ def lint_setup_py(session):
def pytype(session):
"""Run type-checking."""
session.install(
".", "grpcio >= 1.8.2", "grpcio-gcp >= 0.2.2", "pytype >= 2019.3.21"
".", "grpcio >= 1.30.0", "grpcio-gcp >= 0.2.2", "pytype >= 2019.3.21"
)
session.run("pytype")

Expand All @@ -163,7 +163,7 @@ def cover(session):
def docs(session):
"""Build the docs for this library."""

session.install(".", "grpcio >= 1.8.2", "grpcio-gcp >= 0.2.2")
session.install(".", "grpcio >= 1.30.0", "grpcio-gcp >= 0.2.2")
session.install("-e", ".")
session.install("sphinx==4.0.1", "alabaster", "recommonmark")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -40,7 +40,7 @@
'futures >= 3.2.0; python_version < "3.2"',
]
extras = {
"grpc": "grpcio >= 1.29.0, < 2.0dev",
"grpc": "grpcio >= 1.30.0, < 2.0dev",
"grpcgcp": "grpcio-gcp >= 0.2.2",
"grpcio-gcp": "grpcio-gcp >= 0.2.2",
}
Expand Down
2 changes: 1 addition & 1 deletion testing/constraints-3.6.txt
Expand Up @@ -12,6 +12,6 @@ requests==2.18.0
setuptools==40.3.0
packaging==14.3
six==1.13.0
grpcio==1.29.0
grpcio==1.30.0
grpcio-gcp==0.2.2
grpcio-gcp==0.2.2

0 comments on commit 93fc93f

Please sign in to comment.