Small refactor on WASMModuleInstance and fix Go/Python language bindings (#3227)

- Merge unused field `used_to_be_wasi_ctx` in `AOTModuleInstance` into `reserved` area
- Add field `memory_lock` in `WASMMemoryInstance` for future refactor
- Go binding: fix type error
    https://github.com/bytecodealliance/wasm-micro-runtime/issues/3220
- Python binding:
    type annotation uses the union operator "|", which requires Python version >=3.10
This commit is contained in:
TianlongLiang
2024-03-14 15:30:28 +08:00
committed by GitHub
parent c3e33a96ea
commit de803b2beb
6 changed files with 12 additions and 11 deletions

View File

@ -62,5 +62,5 @@ setup(
'install': PreInstallCommand,
'egg_info': PreEggInfoCommand,
},
python_requires='>=3.9'
python_requires='>=3.10'
)