From 29b4b785d0152c964819bc613a0321214df78c47 Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Sun, 19 Aug 2012 03:04:19 +0900 Subject: Fix build_ext doesn't work on Python 3. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 074700b..b03647a 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ Install Cython >= 0.16 or install msgpack from PyPI. class BuildExt(build_ext): def build_extension(self, ext): - ext.sources = map(ensure_source, ext.sources) + ext.sources = list(map(ensure_source, ext.sources)) return build_ext.build_extension(self, ext) -- cgit v1.2.1