Skip to content

Commit 4961742

Browse files
authored
1 parent 11bbd94 commit 4961742

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

noxfile.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,12 @@ def pytype(session):
188188
def mypy(session):
189189
"""Run type-checking."""
190190
session.install(".[grpc]", "mypy")
191+
# Exclude types-protobuf==4.24.0.20240106
192+
# See https://github.com/python/typeshed/issues/11254
191193
session.install(
192194
"types-setuptools",
193195
"types-requests",
194-
"types-protobuf",
196+
"types-protobuf!=4.24.0.20240106",
195197
"types-mock",
196198
"types-dataclasses",
197199
)

0 commit comments

Comments
 (0)