I am attempting to use wasmtime-py with graalpy, but I get the RuntimeError from below:
|
if sys.maxsize <= 2**32: |
|
raise RuntimeError("wasmtime only works on 64-bit platforms right now") |
It is suggested to use the same check that was used by pypa/packaging as seen in issue 614 in the repo:
_32_BIT_INTERPRETER = (struct.calcsize("P") == 4)
A different means should be used.
I am attempting to use
wasmtime-pywith graalpy, but I get theRuntimeErrorfrom below:wasmtime-py/wasmtime/_ffi.py
Lines 8 to 9 in 0513ef7
It is suggested to use the same check that was used by pypa/packaging as seen in issue 614 in the repo:
A different means should be used.