Use fixed abx-plugins tag in CI

This commit is contained in:
Nick Sweeting 2026-06-21 03:19:45 -07:00
parent 7bee5417e7
commit ec728caeab
No known key found for this signature in database
2 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,11 @@ set -Eeuo pipefail
repo_name="$1"
target_dir="${2:-$repo_name}"
case "$repo_name" in
abx-plugins)
version="1.11.232"
;;
*)
version="$(
python3 - "$repo_name" <<'PY'
import re
@ -22,6 +27,8 @@ if not match:
print(match.group(1))
PY
)"
;;
esac
echo "Cloning ArchiveBox/${repo_name}@v${version} into ${target_dir}"
git clone --depth=1 --branch "v${version}" "https://github.com/ArchiveBox/${repo_name}.git" "$target_dir"

View File

@ -46,7 +46,7 @@ wheels = [
[[package]]
name = "abx-plugins"
version = "1.11.232"
version = "1.11.231"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "abxbus", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },