From 7a30b8a8bbd4b074c225a2b5946cec935dd99c1f Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sun, 2 Aug 2026 02:43:42 -0700 Subject: [PATCH] Bootstrap corrected abxpkg release --- archivebox/tests/test_setup_script.py | 2 +- bin/setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/archivebox/tests/test_setup_script.py b/archivebox/tests/test_setup_script.py index 58d248ea..cb9d08f9 100644 --- a/archivebox/tests/test_setup_script.py +++ b/archivebox/tests/test_setup_script.py @@ -37,7 +37,7 @@ def test_setup_script_bootstraps_locked_abxpkg_version(): prepare_function = script.partition("prepare_abxpkg_environment() {")[2].partition("\n}")[0] install_function = script.partition("install_archivebox_with_uv() {")[2].partition("\n}")[0] - assert 'ABXPKG_PACKAGE="${ABXPKG_PACKAGE:-abxpkg==1.12.45}"' in script + assert 'ABXPKG_PACKAGE="${ABXPKG_PACKAGE:-abxpkg==1.12.46}"' in script assert "fix_root_install_ownership" in prepare_function assert "resolve_setup_binary git env,brew,apt true" in install_function diff --git a/bin/setup.sh b/bin/setup.sh index c6501174..f4319f74 100755 --- a/bin/setup.sh +++ b/bin/setup.sh @@ -76,7 +76,7 @@ ARCHIVEBOX_PYTHON="${ARCHIVEBOX_PYTHON:-3.13}" ARCHIVEBOX_PACKAGE="${ARCHIVEBOX_PACKAGE:-git+https://github.com/ArchiveBox/ArchiveBox.git@${ARCHIVEBOX_BRANCH}}" ARCHIVEBOX_PLATFORM="${ARCHIVEBOX_PLATFORM:-}" ARCHIVEBOX_COMPOSE_URL="${ARCHIVEBOX_COMPOSE_URL:-https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/${ARCHIVEBOX_BRANCH}/docker-compose.yml}" -ABXPKG_PACKAGE="${ABXPKG_PACKAGE:-abxpkg==1.12.45}" +ABXPKG_PACKAGE="${ABXPKG_PACKAGE:-abxpkg==1.12.46}" ABXPKG_LIB_DIR="${ABXPKG_LIB_DIR:-$HOME/.cache/archivebox/setup-abxpkg}" ARCHIVEBOX_HOME_DIR="$HOME/archivebox" ARCHIVEBOX_DATA_DIR="$ARCHIVEBOX_HOME_DIR/data"