mirror of
https://github.com/msgpack/msgpack-python.git
synced 2025-10-20 04:13:16 +00:00
Fix build_ext doesn't work on Python 3.
This commit is contained in:
parent
670bb3ca15
commit
29b4b785d0
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -49,7 +49,7 @@ Install Cython >= 0.16 or install msgpack from PyPI.
|
||||||
|
|
||||||
class BuildExt(build_ext):
|
class BuildExt(build_ext):
|
||||||
def build_extension(self, 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)
|
return build_ext.build_extension(self, ext)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue