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/nextpnr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 301956cfc30c
Choose a base ref
...
head repository: YoWASP/nextpnr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2307b236cc5a
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Jul 30, 2020

  1. Update wasmtime.

    whitequark committed Jul 30, 2020
    Copy the full SHA
    2307b23 View commit details
Showing with 4 additions and 4 deletions.
  1. +1 −1 pypi-ecp5/setup.py
  2. +1 −1 pypi-ecp5/yowasp_nextpnr_ecp5/__init__.py
  3. +1 −1 pypi-ice40/setup.py
  4. +1 −1 pypi-ice40/yowasp_nextpnr_ice40/__init__.py
2 changes: 1 addition & 1 deletion pypi-ecp5/setup.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def long_description():
version=version(),
install_requires=[
"importlib_resources; python_version<'3.9'",
"wasmtime~=0.18.2"
"wasmtime~=0.19.0"
],
packages=["yowasp_nextpnr_ecp5"],
package_data={
2 changes: 1 addition & 1 deletion pypi-ecp5/yowasp_nextpnr_ecp5/__init__.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,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"]()
2 changes: 1 addition & 1 deletion pypi-ice40/setup.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def long_description():
version=version(),
install_requires=[
"importlib_resources; python_version<'3.9'",
"wasmtime~=0.18.2"
"wasmtime~=0.19.0"
],
packages=["yowasp_nextpnr_ice40"],
package_data={"yowasp_nextpnr_ice40": [
2 changes: 1 addition & 1 deletion pypi-ice40/yowasp_nextpnr_ice40/__init__.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,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"]()