From 616050075f690c544cb5b236cdb3c08e3e4483f6 Mon Sep 17 00:00:00 2001 From: Eric Coissac Date: Mon, 22 Jun 2026 15:41:11 +0200 Subject: [PATCH] ci: bypass PEP 668 restrictions and update obikmer to 1.1.11 Add the `--break-system-packages` flag to the `pip install ziglang` command in the Gitea release workflow to bypass PEP 668 restrictions on modern Linux distributions. Additionally, bump the `obikmer` crate version from 1.1.9 to 1.1.11 across both Cargo.toml and Cargo.lock. --- .gitea/workflows/release.yml | 2 +- src/Cargo.lock | 2 +- src/obikmer/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index a243385..ccbb5dc 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,7 +19,7 @@ jobs: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable echo "$HOME/.cargo/bin" >> $GITHUB_PATH sudo apt-get update -qq && sudo apt-get install -y -qq jq - pip install ziglang --quiet + pip install ziglang --quiet --break-system-packages $HOME/.cargo/bin/cargo install cargo-zigbuild $HOME/.cargo/bin/rustup target add x86_64-unknown-linux-musl diff --git a/src/Cargo.lock b/src/Cargo.lock index 5877839..4e7a5fe 100644 --- a/src/Cargo.lock +++ b/src/Cargo.lock @@ -1704,7 +1704,7 @@ dependencies = [ [[package]] name = "obikmer" -version = "1.1.9" +version = "1.1.11" dependencies = [ "clap", "csv", diff --git a/src/obikmer/Cargo.toml b/src/obikmer/Cargo.toml index 8719568..0d89ac2 100644 --- a/src/obikmer/Cargo.toml +++ b/src/obikmer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obikmer" -version = "1.1.9" +version = "1.1.11" edition = "2024" [[bin]] -- 2.52.0