Skip to content

Commit

Permalink
Update dependency: deps/pyk_release (#335)
Browse files Browse the repository at this point in the history
* deps/pyk_release: Set Version v0.1.673

* Set Version: 0.2.34

* kmir/{pyproject.toml,poetry.lock}: sync Poetry files

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

* deps/pyk_release: Set Version v0.1.674

* kmir/{pyproject.toml,poetry.lock}: sync Poetry files

* deps/k_release: sync release file version 6.3.23

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

* deps/pyk_release: Set Version v0.1.675

* kmir/{pyproject.toml,poetry.lock}: sync Poetry files

* deps/k_release: sync release file version 6.3.24

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

* Check that failure_info is APRFailureInfo

* kmir/{pyproject.toml,poetry.lock}: sync Poetry files

---------

Co-authored-by: devops <[email protected]>
Co-authored-by: dkcumming <[email protected]>
  • Loading branch information
3 people authored Mar 4, 2024
1 parent ae858ec commit d74815d
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion deps/k_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.3.21
6.3.24
2 changes: 1 addition & 1 deletion deps/pyk_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.672
v0.1.675
36 changes: 18 additions & 18 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
description = " A flake for KMIR Semantics";

inputs = {
k-framework.url = "github:runtimeverification/k/v6.3.21";
k-framework.url = "github:runtimeverification/k/v6.3.24";
nixpkgs.follows = "k-framework/nixpkgs";
flake-utils.follows = "k-framework/flake-utils";
rv-utils.follows = "k-framework/rv-utils";
pyk.url = "github:runtimeverification/pyk/v0.1.672";
pyk.url = "github:runtimeverification/pyk/v0.1.675";
nixpkgs-pyk.follows = "pyk/nixpkgs";
poetry2nix.follows = "pyk/poetry2nix";
};
Expand Down
20 changes: 10 additions & 10 deletions kmir/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 kmir/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kmir"
version = "0.2.33"
version = "0.2.34"
description = ""
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand All @@ -13,7 +13,7 @@ authors = [
[tool.poetry.dependencies]
python = "^3.10"
filelock = "3.9.0"
pyk = { git = "https://github.com/runtimeverification/pyk.git", tag = "v0.1.672" }
pyk = { git = "https://github.com/runtimeverification/pyk.git", tag = "v0.1.675" }
pytest-timeout = "2.1.0"

[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion kmir/src/kmir/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .prove import prove, show_proof, view_proof
from .run import run

VERSION: Final = '0.2.33'
VERSION: Final = '0.2.34'
3 changes: 2 additions & 1 deletion kmir/src/kmir/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from typing import Any, Final, Iterable, Optional

from pyk.proof import APRProof
from pyk.proof.reachability import APRFailureInfo
from pyk.utils import BugReport, check_dir_path, check_file_path

from . import VERSION
Expand Down Expand Up @@ -153,7 +154,7 @@ def exec_prove(

for proof in failed:
print(f'PROOF FAILED: {proof.id}')
if isinstance(proof, APRProof) and proof.failure_info is not None:
if isinstance(proof, APRProof) and isinstance(proof.failure_info, APRFailureInfo):
failure_info = '\n'.join(proof.failure_info.print())
print(f'{failure_info}')

Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.33
0.2.34

0 comments on commit d74815d

Please sign in to comment.