Lev E. Givon
Results
92
comments of
Lev E. Givon
Per the PR I submitted, I just updated the required wheel version in pyproject.toml and installed from my local source directory. Perhaps the old version of wheel is still present...
I can't seem to reproduce this: ```python ❯ pip freeze | egrep '(msgpack-numpy|msgpack-python|numpy)' msgpack-numpy==0.4.8 msgpack-python==0.5.6 numpy==1.24.4 ❯ python --version Python 3.9.5 ❯ python -c 'import msgpack_numpy, numpy; x=numpy.ones((3,3)); s=msgpack_numpy.packb(x); print(msgpack_numpy.unpackb(s))'...