Skip to content

Commit ffb03f9

Browse files
Change pyk dependency to the published version (#656)
* Change `pyk` dependency to the published version * Test workflow * Set Version: 0.1.68 * Revert "Test workflow" This reverts commit 5dffd84. --------- Co-authored-by: devops <[email protected]>
1 parent 69abe13 commit ffb03f9

File tree

5 files changed

+78
-88
lines changed

5 files changed

+78
-88
lines changed

.github/workflows/update-version.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
authToken: '${{ secrets.CACHIX_PUBLIC_TOKEN }}'
4040
- name: 'Update pyk release tag'
4141
run: |
42-
K_VERSION=v"$(cat deps/k_release)"
43-
sed -i 's!kframework = { git = "https://github.com/runtimeverification/k.git", tag="[v0-9\.]*", subdirectory = "pyk" }!kframework = { git = "https://github.com/runtimeverification/k.git", tag="'${K_VERSION}'", subdirectory = "pyk" }!' pykwasm/pyproject.toml
42+
K_VERSION=$(cat deps/k_release)
43+
sed -i 's!kframework = "[v0-9\.]*"!kframework = "'${K_VERSION}'"!' pykwasm/pyproject.toml
4444
poetry -C pykwasm update
4545
git add pykwasm/ && git commit -m "pykwasm/: sync poetry files ${K_VERSION}" || true
4646
- name: 'Update Nix flake inputs'

flake.nix

-5
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,6 @@
7272
kwasm-pyk = poetry2nix.mkPoetryApplication {
7373
python = nixpkgs-pyk.python310;
7474
projectDir = ./pykwasm;
75-
src = rv-utils.lib.mkPykAppSrc {
76-
pkgs = import nixpkgs { system = prev.system; };
77-
src = ./pykwasm;
78-
cleaner = poetry2nix.cleanPythonSources;
79-
};
8075
overrides = poetry2nix.overrides.withDefaults
8176
(finalPython: prevPython: {
8277
pyk = nixpkgs-pyk.pyk-python310;

package/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.67
1+
0.1.68

0 commit comments

Comments
 (0)