Skip to content

Commit 8ee34fe

Browse files
rv-jenkinsrv-auditorBaltoli
authored
Update dependency: deps/kwasm_release (#296)
* deps/kwasm_release: Set Version 0.1.69 * Set Version: 0.1.88 * kmultiversx/: sync poetry files 0.1.69 * flake.{nix,lock}: update Nix derivations * deps/kwasm_release: Set Version 0.1.70 * kmultiversx/: sync poetry files 0.1.70 * deps/k_release: sync release file version 7.1.30 * flake.{nix,lock}: update Nix derivations * Fix hypothesis issue * kmultiversx/: sync poetry files 0.1.70 * Two-step fix --------- Co-authored-by: devops <[email protected]> Co-authored-by: Bruce Collie <[email protected]>
1 parent 3b0736a commit 8ee34fe

File tree

7 files changed

+107
-101
lines changed

7 files changed

+107
-101
lines changed

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.21
1+
7.1.30

deps/kwasm_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.68
1+
0.1.70

flake.lock

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

flake.nix

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
description = "K Semantics of MultiversX";
33

44
inputs = {
5-
wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.68";
6-
k-framework.url = "github:runtimeverification/k/v7.1.21";
7-
pyk.url = "github:runtimeverification/k/v7.1.21?dir=pyk";
5+
wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.70";
6+
k-framework.url = "github:runtimeverification/k/v7.1.30";
7+
pyk.url = "github:runtimeverification/k/v7.1.30?dir=pyk";
88
nixpkgs.follows = "k-framework/nixpkgs";
99
flake-utils.follows = "k-framework/flake-utils";
1010
rv-utils.url = "github:runtimeverification/rv-nix-tools";
@@ -112,14 +112,19 @@
112112
};
113113
overrides = poetry2nix.overrides.withDefaults
114114
(finalPython: prevPython: {
115-
pyk = nixpkgs-pyk.pyk-python310;
116-
pykwasm = wasm-semantics.packages.${prev.system}.kwasm-pyk;
117-
hypothesis = prevPython.hypothesis.overridePythonAttrs (old: {
115+
kframework = nixpkgs-pyk.pyk-python310.overridePythonAttrs
116+
(old: {
118117
propagatedBuildInputs = prev.lib.filter
119-
(x: !(prev.lib.strings.hasInfix "attrs" x.name || prev.lib.strings.hasInfix "exceptiongroup" x.name))
120-
old.propagatedBuildInputs;
121-
buildInputs = (old.buildInputs or []) ++ [ finalPython.attrs finalPython.exceptiongroup ];
122-
});
118+
(x: !(prev.lib.strings.hasInfix "hypothesis" x.name))
119+
old.propagatedBuildInputs ++ [ finalPython.hypothesis ];
120+
});
121+
pykwasm =
122+
wasm-semantics.packages.${prev.system}.kwasm-pyk.overridePythonAttrs
123+
(old: {
124+
propagatedBuildInputs = prev.lib.filter
125+
(x: !(prev.lib.strings.hasInfix "kframework" x.name))
126+
old.propagatedBuildInputs ++ [ finalPython.kframework ];
127+
});
123128
});
124129
groups = [ ];
125130
checkGroups = [ ];

0 commit comments

Comments
 (0)