Skip to content

Commit

Permalink
Update dependency: deps/kevm_release (#181)
Browse files Browse the repository at this point in the history
* deps/kevm_release: Set Version 1.0.360

* Sync Poetry files: kevm-pyk version 1.0.360

* flake.{nix,lock}: update Nix derivations

* Drop the `plugin_dir` argument

* Set shell options for `nix` job

* Set Version: 0.1.64

* deps/kevm_release: Set Version 1.0.361

* Sync Poetry files: kevm-pyk version 1.0.361

* deps/k_release: sync release file version 6.1.14

* flake.{nix,lock}: update Nix derivations

* add missing deps

* Set Version: 0.1.65

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: Tamás Tóth <[email protected]>
Co-authored-by: Samuel Balco <[email protected]>
  • Loading branch information
4 people authored Nov 20, 2023
1 parent 2d32bf2 commit 136a305
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 41 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ jobs:
NIX_PATH: 'nixpkgs=http://nixos.org/channels/nixos-22.05/nixexprs.tar.xz'
GC_DONT_GC: '1'
run: |
set -euxo pipefail
nix --version
JQ=$(nix-build '<nixpkgs>' -A jq --no-link)/bin/jq
KONTROL_BIN=$(nix build .#kontrol.solc_0_8_13 --print-build-logs --json | $JQ -r '.[].outputs | to_entries[].value')/bin
Expand Down
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.1.10
6.1.14
2 changes: 1 addition & 1 deletion deps/kevm_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.357
1.0.361
38 changes: 19 additions & 19 deletions flake.lock

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

4 changes: 3 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Kontrol";

inputs = {
kevm.url = "github:runtimeverification/evm-semantics/v1.0.357";
kevm.url = "github:runtimeverification/evm-semantics/v1.0.361";
nixpkgs.follows = "kevm/nixpkgs";
nixpkgs-pyk.follows = "kevm/nixpkgs-pyk";
k-framework.follows = "kevm/k-framework";
Expand Down Expand Up @@ -88,6 +88,8 @@
libtool
openssl.dev
gmp
pkg-config
procps
];
nativeBuildInputs = [ prev.makeWrapper ];

Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.64
0.1.65
24 changes: 12 additions & 12 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kontrol"
version = "0.1.64"
version = "0.1.65"
description = "Foundry integration for KEVM"
authors = [
"Runtime Verification, Inc. <[email protected]>",
]

[tool.poetry.dependencies]
python = "^3.10"
kevm-pyk = { git = "https://github.com/runtimeverification/evm-semantics.git", tag = "v1.0.357", subdirectory = "kevm-pyk" }
kevm-pyk = { git = "https://github.com/runtimeverification/evm-semantics.git", tag = "v1.0.361", subdirectory = "kevm-pyk" }

[tool.poetry.group.dev.dependencies]
autoflake = "*"
Expand Down
2 changes: 1 addition & 1 deletion src/kontrol/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
if TYPE_CHECKING:
from typing import Final

VERSION: Final = '0.1.64'
VERSION: Final = '0.1.65'
3 changes: 0 additions & 3 deletions src/kontrol/kompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,6 @@ def update_kompilation_digest() -> None:
_LOGGER.info('Updated Kompilation digest')

if not kompilation_up_to_date() or rekompile or not kompiled_timestamp.exists():
plugin_dir = kdist.get('evm-semantics.plugin')

kevm_kompile(
target=target,
output_dir=foundry.kompiled,
Expand All @@ -150,7 +148,6 @@ def update_kompilation_digest() -> None:
llvm_library=foundry.llvm_library,
debug=debug,
verbose=verbose,
plugin_dir=plugin_dir,
)

update_kompilation_digest()
Expand Down

0 comments on commit 136a305

Please sign in to comment.