From 2e8b3eddc1f88f5b3c4fabcb2de0caa5feedb0d0 Mon Sep 17 00:00:00 2001 From: Virgil <25692529+virgil-serbanuta@users.noreply.github.com> Date: Thu, 8 Aug 2024 23:25:31 +0300 Subject: [PATCH] Fix lambda type for KompileTarget (#320) * Fix lambda type for KompileTarget * Set Version: 0.1.108 --------- Co-authored-by: devops --- kmultiversx/pyproject.toml | 2 +- kmultiversx/src/kmultiversx/kdist/plugin.py | 4 ++-- package/version | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kmultiversx/pyproject.toml b/kmultiversx/pyproject.toml index 9c752f89..08776e8a 100644 --- a/kmultiversx/pyproject.toml +++ b/kmultiversx/pyproject.toml @@ -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. ", diff --git a/kmultiversx/src/kmultiversx/kdist/plugin.py b/kmultiversx/src/kmultiversx/kdist/plugin.py index c7894f88..0b6e47bc 100644 --- a/kmultiversx/src/kmultiversx/kdist/plugin.py +++ b/kmultiversx/src/kmultiversx/kdist/plugin.py @@ -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: diff --git a/package/version b/package/version index c72cf6b0..68a31b00 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.107 +0.1.108