Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
Fix a trailing comma in proto- packages. (#1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukesneeringer authored Feb 23, 2017
1 parent ba6d6ce commit 00b52bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

install_requires = [
@join packageDep : metadata.protoPackageDependencies
'{@packageDep.name}[grpc]>={@packageDep.versionBound.lower}, <{@packageDep.versionBound.upper}'
'{@packageDep.name}[grpc]>={@packageDep.versionBound.lower}, <{@packageDep.versionBound.upper}',
@end
'oauth2client>={@metadata.authVersionBound.lower}, <{@metadata.authVersionBound.upper}',
'grpcio>={@metadata.grpcVersionBound.lower}, <{@metadata.grpcVersionBound.upper}',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ import setuptools
from setuptools import setup, find_packages

install_requires = [
'googleapis-common-protos[grpc]>=1.5.0, <2.0.0dev'
'googleapis-common-protos[grpc]>=1.5.0, <2.0.0dev',
'oauth2client>=2.0.0, <4.0.0dev',
'grpcio>=1.0.0, <2.0.0dev',
]
Expand Down

0 comments on commit 00b52bd

Please sign in to comment.