diff options
author | Nathaniel Manista <nathaniel@google.com> | 2015-03-16 17:05:18 -0700 |
---|---|---|
committer | Nathaniel Manista <nathaniel@google.com> | 2015-03-16 17:05:18 -0700 |
commit | ea34b1f078ed8768b7adf96a01e93679ac6f24b7 (patch) | |
tree | 63f7071a67f0ec7a7ea9282004c52c3084030910 /src | |
parent | d3d55c76f196d4217737b207f5b27638ab9880b3 (diff) | |
parent | 2493ea6d4b300a952d0a6fe120d61760814490d1 (diff) |
Merge pull request #1054 from murgatroid99/python_setup_lists
Fixed argument types in setup.py
Diffstat (limited to 'src')
-rw-r--r-- | src/python/src/setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/src/setup.py b/src/python/src/setup.py index a513a2811b..7d93aa7ded 100644 --- a/src/python/src/setup.py +++ b/src/python/src/setup.py @@ -54,8 +54,8 @@ _EXTENSION_LIBRARIES = ( _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 = ( @@ -82,5 +82,5 @@ _PACKAGE_DIRECTORIES = { _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) |