Skip to content

Commit

Permalink
Fix lambda type for KompileTarget (#320)
Browse files Browse the repository at this point in the history
* Fix lambda type for KompileTarget

* Set Version: 0.1.108

---------

Co-authored-by: devops <devops@runtimeverification.com>
  • Loading branch information
virgil-serbanuta and devops authored Aug 8, 2024
1 parent b96c65f commit 2e8b3ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion kmultiversx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kmultiversx"
version = "0.1.107"
version = "0.1.108"
description = "Python tools for Elrond semantics"
authors = [
"Runtime Verification, Inc. <contact@runtimeverification.com>",
Expand Down
4 changes: 2 additions & 2 deletions kmultiversx/src/kmultiversx/kdist/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ def source(self) -> tuple[Path]:


class KompileTarget(Target):
_kompile_args: Callable[[Path], Mapping[str, Any]]
_kompile_args: Callable[[Path, Path], Mapping[str, Any]]

def __init__(self, kompile_args: Callable[[Path], Mapping[str, Any]]):
def __init__(self, kompile_args: Callable[[Path, Path], Mapping[str, Any]]):
self._kompile_args = kompile_args

def build(self, output_dir: Path, deps: dict[str, Path], args: dict[str, Any], verbose: bool) -> None:
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.107
0.1.108

0 comments on commit 2e8b3ed

Please sign in to comment.