Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: YoWASP/yosys
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a092b8fe9b4a
Choose a base ref
...
head repository: YoWASP/yosys
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1ef83eaa0103
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jul 30, 2020

  1. Update wasmtime.

    whitequark committed Jul 30, 2020
    Copy the full SHA
    1ef83ea View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 pypi/setup.py
  2. +1 −1 pypi/yowasp_yosys/__init__.py
2 changes: 1 addition & 1 deletion pypi/setup.py
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ def long_description():
setup_requires=["setuptools_scm", "wheel"],
install_requires=[
"importlib_resources; python_version<'3.9'",
"wasmtime~=0.18.2"
"wasmtime~=0.19.0"
],
packages=["yowasp_yosys"],
package_data={"yowasp_yosys": [
2 changes: 1 addition & 1 deletion pypi/yowasp_yosys/__init__.py
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ def _run_wasm_app(wasm_filename, argv):
linker = wasmtime.Linker(store)
wasi = linker.define_wasi(wasmtime.WasiInstance(store,
"wasi_snapshot_preview1", wasi_cfg))
app = linker.instantiate(wasmtime.Module(store,
app = linker.instantiate(wasmtime.Module(store.engine,
importlib_resources.read_binary(__package__, wasm_filename)))
try:
app.exports["_start"]()