wasmer-python icon indicating copy to clipboard operation
wasmer-python copied to clipboard

Python 3.11 packages

Open thewtex opened this issue 2 years ago • 5 comments

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!

thewtex avatar Feb 10 '23 22:02 thewtex

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 avatar Jul 20 '23 20:07 ic3man5

pr!721

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

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

ic3man5 avatar Jul 20 '23 20:07 ic3man5

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?

codegod100 avatar Aug 29 '23 17:08 codegod100

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?

bbartling avatar Dec 06 '23 18:12 bbartling

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

omer9564 avatar Jul 03 '24 10:07 omer9564