Skip to content

Commit

Permalink
Fixed argument types in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
murgatroid99 committed Mar 16, 2015
1 parent a181d21 commit 2493ea6
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 2493ea6

Please sign in to comment.