Skip to content

Commit 4e4a2f4

Browse files
rv-jenkinsrv-auditorbbyalcinkaya
authored
Update dependency: deps/kwasm_release (#271)
* deps/kwasm_release: Set Version 0.1.54 * Set Version: 0.1.64 * kmultiversx/: sync poetry files 0.1.54 * deps/k_release: sync release file version 7.0.88 * KompileBackend => PykBackend * kmultiversx/: sync poetry files 0.1.54 --------- Co-authored-by: devops <[email protected]> Co-authored-by: Burak Bilge Yalcinkaya <[email protected]>
1 parent 81e17b1 commit 4e4a2f4

File tree

6 files changed

+32
-33
lines changed

6 files changed

+32
-33
lines changed

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.70
1+
7.0.88

deps/kwasm_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.53
1+
0.1.54

kmultiversx/poetry.lock

Lines changed: 24 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kmultiversx/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "kmultiversx"
7-
version = "0.1.63"
7+
version = "0.1.64"
88
description = "Python tools for Elrond semantics"
99
authors = [
1010
"Runtime Verification, Inc. <[email protected]>",
@@ -21,7 +21,7 @@ mx-semantics = "kmultiversx.kdist.plugin"
2121

2222
[tool.poetry.dependencies]
2323
python = "^3.10"
24-
pykwasm = { git = "https://github.com/runtimeverification/wasm-semantics.git", tag = "v0.1.53", subdirectory = "pykwasm" }
24+
pykwasm = { git = "https://github.com/runtimeverification/wasm-semantics.git", tag = "v0.1.54", subdirectory = "pykwasm" }
2525
pycryptodomex = "^3.18.0"
2626
hypothesis = "^6.82.6"
2727

kmultiversx/src/kmultiversx/kdist/plugin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from pyk.kbuild.utils import k_version, sync_files
1010
from pyk.kdist.api import Target
11-
from pyk.ktool.kompile import KompileBackend, kompile
11+
from pyk.ktool.kompile import PykBackend, kompile
1212
from pyk.utils import run_process
1313

1414
if TYPE_CHECKING:
@@ -99,7 +99,7 @@ def ccopts(plugin_dir: Path) -> list[str]:
9999

100100
return KompileTarget(
101101
lambda src_dir, plugin_dir: {
102-
'backend': KompileBackend.LLVM,
102+
'backend': PykBackend.LLVM,
103103
'main_file': src_dir / 'mx-semantics' / main_file_name,
104104
'main_module': main_module,
105105
'syntax_module': syntax_module,
@@ -115,7 +115,7 @@ def ccopts(plugin_dir: Path) -> list[str]:
115115
def haskell_target(main_file_name: str, main_module: str, syntax_module: str) -> KompileTarget:
116116
return KompileTarget(
117117
lambda src_dir, plugin_dir: {
118-
'backend': KompileBackend.HASKELL,
118+
'backend': PykBackend.HASKELL,
119119
'main_file': src_dir / 'mx-semantics' / main_file_name,
120120
'main_module': main_module,
121121
'syntax_module': syntax_module,

package/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.63
1+
0.1.64

0 commit comments

Comments
 (0)