wasmer-python
wasmer-python copied to clipboard
Python 3.11 packages
Describe the bug
Python 3.11 package are not available on PyPI
Steps to reproduce
With Python 3.11, pip install wasmer
. import wasmer
results in:
ImportError: Wasmer is not available on this system
Expected behavior
Python 3.11 packages.
Actual behavior
3.11 arch-specific wheels are not available on PyPI.
Additional context
Thank you!
This is still an issue, looks like version 1.1.1 was never uploaded to PyPI and it looks like 1.2.0 is also not working. Is there something blocking getting a new release out?
I'm not a real python dev so I'm not positive, but it seems pythonland is always running behind. Didn't python 3.11 come out like a year ago?
hello... am running into this same issue where if I dial back to Python 3.10 still same issue but I happen to have a 3.7 version of python on my computer where this appears to work just fine. Will this repo be maintained into the future?
I workaround it using the following command:
git clone --depth 1 --branch 1.1.1 [email protected]:wasmerio/wasmer-python.git && cd wasmer-python && pip install packages/api packages/compiler-cranelift
Notice that you must have rust installed, if you are using mac:
brew install rust