Skip to content

Commit 53567c0

Browse files
rv-jenkinsrv-auditortothtamas28
authored
Update dependency: deps/k_release (#84)
Update `kframework` to `7.1.247`. --------- Co-authored-by: devops <devops@runtimeverification.com> Co-authored-by: Tamás Tóth <tothtamas28@users.noreply.github.com>
1 parent 951e6e7 commit 53567c0

9 files changed

Lines changed: 21 additions & 104 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.245
1+
7.1.247

package/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.64
1+
0.1.65

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "kriscv"
7-
version = "0.1.64"
7+
version = "0.1.65"
88
description = "K tooling for the RISC-V architecture"
99
authors = [
1010
"Runtime Verification, Inc. <contact@runtimeverification.com>",
@@ -19,7 +19,7 @@ riscv-semantics = "kriscv.kdist.plugin"
1919

2020
[tool.poetry.dependencies]
2121
python = "^3.10"
22-
kframework = "7.1.245"
22+
kframework = "7.1.247"
2323
pyyaml = "^6.0.1"
2424
types-pyyaml = "^6.0.12.20240311"
2525
filelock = "^3.14.0"

src/kriscv/sparse_bytes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
from typing import NamedTuple
66

77
from pyk.kast.inner import KInner
8-
from pyk.prelude.kint import eqInt, intToken
9-
from pyk.prelude.ml import mlEqualsTrue
8+
from pyk.kast.prelude.kint import eqInt, intToken
9+
from pyk.kast.prelude.ml import mlEqualsTrue
1010

1111
from .term_builder import (
1212
add_bytes,

src/kriscv/term_builder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from typing import TYPE_CHECKING, cast
55

66
from pyk.kast.inner import KApply, KInner, KSort, KVariable
7-
from pyk.prelude.bytes import bytesToken
8-
from pyk.prelude.collections import map_of
9-
from pyk.prelude.kint import intToken
7+
from pyk.kast.prelude.bytes import bytesToken
8+
from pyk.kast.prelude.collections import map_of
9+
from pyk.kast.prelude.kint import intToken
1010

1111
from kriscv.term_manip import normalize_memory
1212

src/kriscv/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from elftools.elf.elffile import ELFFile # type: ignore
88
from pyk.kast.inner import KSort, Subst
99
from pyk.kast.manip import split_config_from
10+
from pyk.kast.prelude.k import GENERATED_TOP_CELL
1011
from pyk.kore.match import kore_int
1112
from pyk.ktool.krun import KRun
12-
from pyk.prelude.k import GENERATED_TOP_CELL
1313

1414
from kriscv import elf_parser, term_builder
1515
from kriscv.term_manip import kore_sparse_bytes, kore_word, match_map

src/tests/unit/test_sparse_bytes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
import pytest
66
from pyk.kast.inner import KToken, KVariable
7-
from pyk.prelude.kint import eqInt, intToken
8-
from pyk.prelude.ml import mlEqualsTrue
7+
from pyk.kast.prelude.kint import eqInt, intToken
8+
from pyk.kast.prelude.ml import mlEqualsTrue
99

1010
import kriscv.term_builder as tb
1111
from kriscv.sparse_bytes import SparseBytes, SymBytes

src/tests/unit/test_unit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
# isort: on
99
import pytest
10+
from pyk.kast.prelude.kint import INT, intToken
1011
from pyk.kllvm.convert import llvm_to_pattern, pattern_to_llvm
1112
from pyk.kore.match import kore_int
12-
from pyk.prelude.kint import INT, intToken
1313

1414
from kriscv import build, term_builder
1515
from kriscv.term_builder import register

0 commit comments

Comments
 (0)