wasmerio / wasmer-python

🐍🕸 WebAssembly runtime for Python
https://wasmer.io
MIT License
2k stars 79 forks source link

Python 3.11 packages #696

Open thewtex opened 1 year ago

thewtex commented 1 year ago

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!

ic3man5 commented 1 year ago

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?

ic3man5 commented 1 year ago

pr!721

@ayys @Michael-F-Bryan PyPI is still @ v1.1.0

https://pypi.org/project/wasmer/#history

codegod100 commented 1 year ago

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?

bbartling commented 10 months 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?

omer9564 commented 3 months ago

I workaround it using the following command:

git clone --depth 1 --branch 1.1.1 git@github.com: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