Skip to content

Commit d1e4272

Browse files
committed
remove grpcio-gcp
1 parent aea8738 commit d1e4272

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,14 +160,14 @@ def lint_setup_py(session):
160160
@nox.session(python="3.6")
161161
def pytype(session):
162162
"""Run type-checking."""
163-
session.install(".[grpc, grpcgcp]", "pytype >= 2019.3.21")
163+
session.install(".[grpc]", "pytype >= 2019.3.21")
164164
session.run("pytype")
165165

166166

167167
@nox.session(python=DEFAULT_PYTHON_VERSION)
168168
def mypy(session):
169169
"""Run type-checking."""
170-
session.install(".[grpc, grpcgcp]", "mypy")
170+
session.install(".[grpc]", "mypy")
171171
session.install(
172172
"types-setuptools",
173173
"types-requests",
@@ -194,7 +194,7 @@ def cover(session):
194194
def docs(session):
195195
"""Build the docs for this library."""
196196

197-
session.install("-e", ".[grpc, grpcgcp]")
197+
session.install("-e", ".[grpc]")
198198
session.install("sphinx==4.0.1", "alabaster", "recommonmark")
199199

200200
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
"requests >= 2.18.0, < 3.0.0dev",
3636
]
3737
extras = {
38-
"grpc": ["grpcio >= 1.33.2, < 2.0dev", "grpcio-status >= 1.33.2, < 2.0dev"],
39-
"grpcgcp": "grpcio-gcp >= 0.2.2, < 1.0dev",
40-
"grpcio-gcp": "grpcio-gcp >= 0.2.2, < 1.0dev",
38+
"grpc": ["grpcio >= 1.33.2, < 2.0dev", "grpcio-status >= 1.33.2, < 2.0dev"],=
4139
}
4240

4341

testing/constraints-3.6.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,4 @@ google-auth==1.25.0
1111
requests==2.18.0
1212
packaging==14.3
1313
grpcio==1.33.2
14-
grpcio-gcp==0.2.2
15-
grpcio-gcp==0.2.2
1614
grpcio-status==1.33.2

testing/constraints-3.7.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ google-auth==1.25.0
1111
requests==2.18.0
1212
packaging==14.3
1313
grpcio==1.33.2
14-
grpcio-gcp==0.2.2
1514
grpcio-status==1.33.2

0 commit comments

Comments
 (0)