Skip to content

Commit 903abe3

Browse files
rv-jenkinsrv-auditorbbyalcinkayajuliankuners
authored
Update dependency: deps/k_release (#724)
* deps/k_release: Set Version 7.1.242 * Set Version: 0.1.127 * pykwasm/: sync poetry files 7.1.242 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.243 * deps/k_release: Set Version 7.1.244 * pykwasm/: sync poetry files 7.1.244 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.245 * pykwasm/: sync poetry files 7.1.245 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.246 * pykwasm/: sync poetry files 7.1.246 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.247 * pykwasm/: sync poetry files 7.1.247 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.248 * deps/k_release: Set Version 7.1.249 * pykwasm/: sync poetry files 7.1.249 * flake.{nix,lock}: update Nix derivations * fix import * deps/k_release: Set Version 7.1.251 * pykwasm/: sync poetry files 7.1.251 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.252 * pykwasm/: sync poetry files 7.1.252 * flake.{nix,lock}: update Nix derivations * deps/k_release: Set Version 7.1.253 * pykwasm/: sync poetry files 7.1.253 * flake.{nix,lock}: update Nix derivations * add `flit-core` dependency for `mypy-extensions` in nix * patch `pyproject.toml` license field for stale `flit-core` * pykwasm/: sync poetry files 7.1.253 --------- Co-authored-by: devops <[email protected]> Co-authored-by: Burak Bilge Yalcinkaya <[email protected]> Co-authored-by: Julian Kuners <[email protected]>
1 parent c18ed92 commit 903abe3

File tree

8 files changed

+173
-235
lines changed

8 files changed

+173
-235
lines changed

deps/k_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.241
1+
7.1.253

flake.lock

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

flake.nix

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "K Semantics of WebAssembly";
33

44
inputs = {
5-
k-framework.url = "github:runtimeverification/k/v7.1.241";
5+
k-framework.url = "github:runtimeverification/k/v7.1.253";
66
nixpkgs.follows = "k-framework/nixpkgs";
77
flake-utils.follows = "k-framework/flake-utils";
88
rv-utils.follows = "k-framework/rv-utils";
@@ -57,6 +57,13 @@
5757
buildInputs = (old.buildInputs or [ ])
5858
++ [ prevPython.setuptools ];
5959
});
60+
mypy-extensions = prevPython.mypy-extensions.overridePythonAttrs (old: {
61+
buildInputs = (old.buildInputs or [ ])
62+
++ [ prevPython.flit-core ];
63+
patches = (old.patches or [ ]) ++ [
64+
./nix/resources/mypy-extensions-pyproject.toml.patch
65+
];
66+
});
6067
});
6168

6269
checkGroups = [ ];
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
--- a/pyproject.toml
2+
+++ b/pyproject.toml
3+
@@ -10,7 +10,7 @@
4+
authors = [
5+
{name = "The mypy developers", email = "[email protected]"}
6+
]
7+
-license = "MIT"
8+
+license = {text = "MIT"}
9+
classifiers = [
10+
"Development Status :: 5 - Production/Stable",
11+
"Environment :: Console",

package/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.126
1+
0.1.127

pykwasm/poetry.lock

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

pykwasm/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 = "pykwasm"
7-
version = "0.1.126"
7+
version = "0.1.127"
88
description = ""
99
authors = [
1010
"Runtime Verification, Inc. <[email protected]>",
@@ -23,7 +23,7 @@ wasm-semantics = "pykwasm.kdist.plugin"
2323
python = "^3.10"
2424
cytoolz = "^0.12.1"
2525
numpy = "^1.24.2"
26-
kframework = "7.1.241"
26+
kframework = "7.1.253"
2727
py-wasm = { git = "https://github.com/runtimeverification/py-wasm.git", tag="0.2.1" }
2828

2929
[tool.poetry.group.dev.dependencies]

pykwasm/src/pykwasm/kwasm_ast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from typing import TYPE_CHECKING
1414

1515
from pyk.kast.inner import KApply, KToken
16-
from pyk.prelude.bytes import bytesToken
16+
from pyk.kast.prelude.utils import bytesToken
1717

1818
if TYPE_CHECKING:
1919
from collections.abc import Iterable

0 commit comments

Comments
 (0)