Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 93fc93f

Browse files
committed
Bump minimum grpcio version to v1.30.0
1 parent ea29e22 commit 93fc93f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def default(session):
8080
)
8181

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

8686
pytest_args = [
@@ -142,7 +142,7 @@ def lint_setup_py(session):
142142
def pytype(session):
143143
"""Run type-checking."""
144144
session.install(
145-
".", "grpcio >= 1.8.2", "grpcio-gcp >= 0.2.2", "pytype >= 2019.3.21"
145+
".", "grpcio >= 1.30.0", "grpcio-gcp >= 0.2.2", "pytype >= 2019.3.21"
146146
)
147147
session.run("pytype")
148148

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

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
'futures >= 3.2.0; python_version < "3.2"',
4141
]
4242
extras = {
43-
"grpc": "grpcio >= 1.29.0, < 2.0dev",
43+
"grpc": "grpcio >= 1.30.0, < 2.0dev",
4444
"grpcgcp": "grpcio-gcp >= 0.2.2",
4545
"grpcio-gcp": "grpcio-gcp >= 0.2.2",
4646
}

testing/constraints-3.6.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ requests==2.18.0
1212
setuptools==40.3.0
1313
packaging==14.3
1414
six==1.13.0
15-
grpcio==1.29.0
15+
grpcio==1.30.0
1616
grpcio-gcp==0.2.2
1717
grpcio-gcp==0.2.2

0 commit comments

Comments
 (0)