Skip to content

Update dependency: deps/pyk_release #1544

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/pyk_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.107
v0.1.108
20 changes: 10 additions & 10 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"github:ethereum/legacytests/d7abc42a7b352a7b44b1f66b58aca54e4af6a9d7";
ethereum-legacytests.flake = false;
haskell-backend.follows = "k-framework/haskell-backend";
pyk.url = "github:runtimeverification/pyk/v0.1.107";
pyk.url = "github:runtimeverification/pyk/v0.1.108";
pyk.inputs.flake-utils.follows = "k-framework/flake-utils";
pyk.inputs.nixpkgs.follows = "k-framework/nixpkgs";

Expand Down
14 changes: 7 additions & 7 deletions kevm-pyk/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kevm-pyk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
[tool.poetry.dependencies]
python = "^3.10"
pathos = "*"
pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="v0.1.107" }
pyk = { git = "https://github.com/runtimeverification/pyk.git", tag="v0.1.108" }

[tool.poetry.group.dev.dependencies]
autoflake = "*"
Expand Down
3 changes: 2 additions & 1 deletion kevm-pyk/src/kevm_pyk/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@ def exec_foundry_view_kcfg(foundry_out: Path, test: str, profile: bool, **kwargs
kcfg_file = kcfgs_dir / f'{test}.json'
use_directory.mkdir(parents=True, exist_ok=True)
foundry = Foundry(definition_dir, profile=profile, use_directory=use_directory)
viewer = KCFGViewer(kcfg_file, foundry)
kcfg = KCFG.from_json(kcfg_file.read_text())
viewer = KCFGViewer(kcfg, foundry)
viewer.run()


Expand Down