Skip to content

Commit e3ea776

Browse files
rv-jenkinsrv-auditoranvacaru
authored
Update dependency: deps/kevm_release (#1136)
* deps/kevm_release: Set Version 1.0.896 * Sync uv files: kevm-pyk version 1.0.896 * deps/k_release: sync release file version 7.1.318 * flake.{nix,lock}: update Nix derivations * remove the telemetry module in favor of the upstreamed one --------- Co-authored-by: devops <devops@runtimeverification.com> Co-authored-by: Andrei <16517508+anvacaru@users.noreply.github.com>
1 parent 4281fa9 commit e3ea776

8 files changed

Lines changed: 582 additions & 625 deletions

File tree

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.313
1+
7.1.318

deps/kevm_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.895
1+
1.0.896

flake.lock

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

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
rv-nix-tools.url = "github:runtimeverification/rv-nix-tools/854d4f05ea78547d46e807b414faad64cea10ae4";
66
nixpkgs.follows = "rv-nix-tools/nixpkgs";
77

8-
kevm.url = "github:runtimeverification/evm-semantics/v1.0.895";
8+
kevm.url = "github:runtimeverification/evm-semantics/v1.0.896";
99
kevm.inputs.nixpkgs.follows = "nixpkgs";
1010

1111
k-framework.follows = "kevm/k-framework";

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "1.0.0"
88
description = "Foundry integration for KEVM"
99
requires-python = "~=3.10"
1010
dependencies = [
11-
"kevm-pyk@git+https://github.com/runtimeverification/evm-semantics.git@v1.0.895#subdirectory=kevm-pyk",
11+
"kevm-pyk@git+https://github.com/runtimeverification/evm-semantics.git@v1.0.896#subdirectory=kevm-pyk",
1212
"eth-utils>=5,<6",
1313
"pycryptodome>=3.20.0,<4",
1414
"pyevmasm>=0.2.3,<0.3",

src/kontrol/__main__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from pyk.cli.pyk import parse_toml_args
99
from pyk.cterm.symbolic import CTermSMTError
10+
from pyk.telemetry import emit_event
1011

1112
from . import VERSION
1213
from .cli import _create_argument_parser, generate_options, get_argument_type_setter, get_option_string_destination
@@ -36,7 +37,6 @@
3637
read_recorded_state_dump,
3738
recorded_state_to_account_cells,
3839
)
39-
from .telemetry import _emit_event
4040
from .utils import (
4141
_LOG_FORMAT,
4242
_rv_blue,
@@ -170,7 +170,7 @@ def exec_build(options: BuildOptions) -> None:
170170
def exec_prove(options: ProveOptions) -> None:
171171
_LOGGER.debug(options)
172172

173-
_emit_event(
173+
emit_event(
174174
'kontrol_prove_start',
175175
{
176176
'reinit': options.reinit,
@@ -207,7 +207,7 @@ def exec_prove(options: ProveOptions) -> None:
207207
init_accounts=init_accounts,
208208
)
209209
except CTermSMTError as err:
210-
_emit_event(
210+
emit_event(
211211
'kontrol_prove_smt_error',
212212
{
213213
'smt_timeout': options.smt_timeout,
@@ -250,7 +250,7 @@ def exec_prove(options: ProveOptions) -> None:
250250
print(f'The proof cannot be completed while there are refuted nodes: {refuted_nodes}.')
251251
print('Either unrefute the nodes or discharge the corresponding refutation subproofs.')
252252

253-
_emit_event(
253+
emit_event(
254254
'kontrol_prove_complete',
255255
{
256256
'total_proofs': len(results),

src/kontrol/telemetry.py

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)