Skip to content

Commit

Permalink
Merge pull request #1865 from daspecster/fix-grpcio-error
Browse files Browse the repository at this point in the history
Exclude grpcio when generating docs. closes #1864
  • Loading branch information
daspecster authored Jun 17, 2016
2 parents 285aced + f990e26 commit e1f6a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'gax-google-pubsub-v1',
]

if sys.version_info[:2] == (2, 7):
if sys.version_info[:2] == (2, 7) and 'READTHEDOCS' not in os.environ:
REQUIREMENTS.extend(GRPC_EXTRAS)

setup(
Expand Down

0 comments on commit e1f6a66

Please sign in to comment.