Skip to content

Commit

Permalink
Make pure-python wheels and eggs possible (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
hexagonrecursion authored Feb 27, 2021
1 parent 44fd577 commit 010de11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __init__(self, *args, **kwargs):
macros = [("__LITTLE_ENDIAN__", "1")]

ext_modules = []
if not PYPY and not PY2:
if not PYPY and not PY2 and not os.environ.get("MSGPACK_PUREPYTHON"):
ext_modules.append(
Extension(
"msgpack._cmsgpack",
Expand Down

0 comments on commit 010de11

Please sign in to comment.