8000 Make pure-python wheels and eggs possible (#467) · nomissbowling/msgpack-python@010de11 · GitHub
[go: up one dir, main page]

Skip to content

Commit 010de11

Browse files
Make pure-python wheels and eggs possible (msgpack#467)
1 parent 44fd577 commit 010de11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(self, *args, **kwargs):
8888
macros = [("__LITTLE_ENDIAN__", "1")]
8989

9090
ext_modules = []
91-
if not PYPY and not PY2:
91+
if not PYPY and not PY2 and not os.environ.get("MSGPACK_PUREPYTHON"):
9292
ext_modules.append(
9393
Extension(
9494
"msgpack._cmsgpack",

0 commit comments

Comments
 (0)
0