Skip to content

Commit

Permalink
Merge pull request grpc#1054 from murgatroid99/python_setup_lists
Browse files Browse the repository at this point in the history
Fixed argument types in setup.py
  • Loading branch information
nathanielmanistaatgoogle committed Mar 17, 2015
2 parents d3d55c7 + 2493ea6 commit ea34b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/python/src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@

_EXTENSION_MODULE = _core.Extension(
'grpc._adapter._c', sources=list(_EXTENSION_SOURCES),
include_dirs=_EXTENSION_INCLUDE_DIRECTORIES,
libraries=_EXTENSION_LIBRARIES,
include_dirs=list(_EXTENSION_INCLUDE_DIRECTORIES),
libraries=list(_EXTENSION_LIBRARIES),
)

_PACKAGES = (
Expand All @@ -82,5 +82,5 @@

_core.setup(
name='grpc-2015', version='0.4.0',
ext_modules=[_EXTENSION_MODULE], packages=_PACKAGES,
ext_modules=[_EXTENSION_MODULE], packages=list(_PACKAGES),
package_dir=_PACKAGE_DIRECTORIES)

0 comments on commit ea34b1f

Please sign in to comment.