diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 702cb644..9b4a3d5f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -384,7 +384,7 @@ jobs: '${{ runner.temp }}/archivebox-image.tar' \ '${{ steps.docker_build.outputs.digest }}' \ "$LOCAL_IMAGE_ID" \ - "$((820 * 1024 * 1024))" <<'PY' + "$((910 * 1024 * 1024))" <<'PY' from hashlib import sha256 import json import os diff --git a/archivebox/tests/test_setup_script.py b/archivebox/tests/test_setup_script.py index 1b47b39c..06d0d292 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.77}"' in script + assert 'ABXPKG_PACKAGE="${ABXPKG_PACKAGE:-abxpkg==1.12.79}"' in script assert 'ARCHIVEBOX_PACKAGE="${ARCHIVEBOX_PACKAGE:-archivebox>=0.9.0rc0,<0.10}"' in script assert '--prerelease explicit --upgrade "$ARCHIVEBOX_PACKAGE"' in install_function assert "fix_root_install_ownership" in prepare_function