From e777c888bbc88d1ad63d4914df5e9adb920f7a33 Mon Sep 17 00:00:00 2001 From: rv-jenkins Date: Wed, 15 May 2024 04:26:14 -0600 Subject: [PATCH] Update dependency: deps/k_release (#2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * deps/k_release: Set Version 7.0.62 * Workflow fixes * Set Version: 0.1.2 * pyproject.toml: sync pyk version 7.0.62 --------- Co-authored-by: devops Co-authored-by: Tamás Tóth --- .github/workflows/test.yml | 2 +- .github/workflows/update.yml | 2 +- deps/k_release | 2 +- package/version | 2 +- poetry.lock | 14 +++++++------- pyproject.toml | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c59ccca6..571bc7a1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: uses: ./.github/actions/with-docker with: container-name: ${CONTAINER} - - name: 'Build ksoroban' + - name: 'Build kriscv' run: docker exec --user user ${CONTAINER} poetry install - name: 'Build semantics' run: docker exec --user user ${CONTAINER} make kdist-build diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 6ed3aada..68cb2658 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -33,6 +33,6 @@ jobs: K_VERSION="$(cat deps/k_release)" sed -i 's!pyk = { git = "https://github.com/runtimeverification/k.git", tag = "[v0-9\.]*", subdirectory = "pyk" }!pyk = { git = "https://github.com/runtimeverification/k.git", tag = "v'${K_VERSION}'", subdirectory = "pyk" }!' pyproject.toml poetry update - git add . && git commit -m "Sync Poetry files ${K_VERSION}" || true + git add . && git commit -m "pyproject.toml: sync pyk version ${K_VERSION}" || true - name: 'Push updates' run: git push diff --git a/deps/k_release b/deps/k_release index de5f6571..83e72acf 100644 --- a/deps/k_release +++ b/deps/k_release @@ -1 +1 @@ -7.0.60 +7.0.62 diff --git a/package/version b/package/version index 17e51c38..d917d3e2 100644 --- a/package/version +++ b/package/version @@ -1 +1 @@ -0.1.1 +0.1.2 diff --git a/poetry.lock b/poetry.lock index 4a1ee2dc..1d2cdfef 100644 --- a/poetry.lock +++ b/poetry.lock @@ -600,13 +600,13 @@ flake8 = ">=5.0.0" [[package]] name = "platformdirs" -version = "4.2.1" +version = "4.2.2" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`." optional = false python-versions = ">=3.8" files = [ - {file = "platformdirs-4.2.1-py3-none-any.whl", hash = "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1"}, - {file = "platformdirs-4.2.1.tar.gz", hash = "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf"}, + {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"}, + {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"}, ] [package.extras] @@ -707,7 +707,7 @@ windows-terminal = ["colorama (>=0.4.6)"] [[package]] name = "pyk" -version = "7.0.60" +version = "7.0.62" description = "" optional = false python-versions = "^3.10" @@ -728,8 +728,8 @@ xdg-base-dirs = "^6.0.1" [package.source] type = "git" url = "https://github.com/runtimeverification/k.git" -reference = "v7.0.60" -resolved_reference = "f66c8efd33deeb6c97f1a44bf6ff6f6954cdada8" +reference = "v7.0.62" +resolved_reference = "75493a99939dc576450d9ad425230e66ae70e54d" subdirectory = "pyk" [[package]] @@ -985,4 +985,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p [metadata] lock-version = "2.0" python-versions = "^3.10" -content-hash = "0969b48bbbdb06b464f3f6144fa6a6c94fc07303e14b5c18956d01d61caad87c" +content-hash = "eff56e33c7de27faabfbf843ddcdac7570686e4a3fc75f40aec1da36438850d9" diff --git a/pyproject.toml b/pyproject.toml index 18aa7091..46c69c14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "kriscv" -version = "0.1.1" +version = "0.1.2" description = "K tooling for the RISC-V architecture" authors = [ "Runtime Verification, Inc. ", @@ -15,7 +15,7 @@ riscv-semantics = "kriscv.kdist.plugin" [tool.poetry.dependencies] python = "^3.10" -pyk = { git = "https://github.com/runtimeverification/k.git", tag = "v7.0.60", subdirectory = "pyk" } +pyk = { git = "https://github.com/runtimeverification/k.git", tag = "v7.0.62", subdirectory = "pyk" } [tool.poetry.group.dev.dependencies] autoflake = "*"