Skip to content

Commit a384c5e

Browse files
authored
Merge branch 'master' into pyproject-nix-overlay
2 parents f0190ce + 12d16d4 commit a384c5e

9 files changed

Lines changed: 604 additions & 434 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.301
1+
7.1.318

deps/pyproject-build-systems

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dbfc0483b5952c6b86e36f8b3afeb9dde30ea4b5
1+
042904167604c681a090c07eb6967b4dd4dae88c

deps/uv2nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b6ed0901aec29583532abe65117b18d86a49b617
1+
9d357f0d2ce6f5f35ec7959d7e704452352eb4da

deps/uv_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.2
1+
0.9.22

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
nixpkgs.follows = "rv-nix-tools/nixpkgs";
66

77
flake-utils.url = "github:numtide/flake-utils";
8-
k-framework.url = "github:runtimeverification/k/v7.1.301";
8+
k-framework.url = "github:runtimeverification/k/v7.1.318";
99
k-framework.inputs.nixpkgs.follows = "nixpkgs";
10-
uv2nix.url = "github:pyproject-nix/uv2nix/b6ed0901aec29583532abe65117b18d86a49b617";
10+
uv2nix.url = "github:pyproject-nix/uv2nix/9d357f0d2ce6f5f35ec7959d7e704452352eb4da";
1111
# uv2nix requires a newer version of nixpkgs
1212
# therefore, we pin uv2nix specifically to a newer version of nixpkgs
1313
# until we replaced our stale version of nixpkgs with an upstream one as well
@@ -16,7 +16,7 @@
1616
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
1717
uv2nix.inputs.nixpkgs.follows = "nixpkgs-unstable";
1818
# uv2nix.inputs.nixpkgs.follows = "nixpkgs";
19-
pyproject-build-systems.url = "github:pyproject-nix/build-system-pkgs/dbfc0483b5952c6b86e36f8b3afeb9dde30ea4b5";
19+
pyproject-build-systems.url = "github:pyproject-nix/build-system-pkgs/042904167604c681a090c07eb6967b4dd4dae88c";
2020
pyproject-build-systems = {
2121
inputs.nixpkgs.follows = "nixpkgs";
2222
inputs.uv2nix.follows = "uv2nix";

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = ""
99
readme = "README.md"
1010
requires-python = "~=3.10"
1111
dependencies = [
12-
"kframework==7.1.301",
12+
"kframework==7.1.318",
1313
]
1414

1515
[[project.authors]]

src/kimp/kimp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def same_loop(self, c1: CTerm, c2: CTerm) -> bool:
7373
def can_make_custom_step(self, c: CTerm) -> bool:
7474
return False
7575

76-
def custom_step(self, c: CTerm, cs: CTermSymbolic) -> KCFGExtendResult | None:
76+
def custom_step(self, c: CTerm, cs: CTermSymbolic, node_id: int) -> KCFGExtendResult | None:
7777
return None
7878

7979
def is_mergeable(self, c1: CTerm, c2: CTerm) -> bool:

0 commit comments

Comments
 (0)