From 585c951aa7fd9c5c5f1817e5eb9e10cf8e2b3ceb Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Thu, 11 Jun 2026 00:00:21 -0700 Subject: [PATCH] release: archivebox 0.9.35rc20 --- bin/release_dev_stack.sh | 21 --------------------- etc/package.json | 2 +- pyproject.toml | 8 ++++---- 3 files changed, 5 insertions(+), 26 deletions(-) diff --git a/bin/release_dev_stack.sh b/bin/release_dev_stack.sh index 0bbfe630..0353eef0 100755 --- a/bin/release_dev_stack.sh +++ b/bin/release_dev_stack.sh @@ -212,27 +212,6 @@ wait_for_pypi() { sleep 10 done - local tmpdir - tmpdir="$(mktemp -d)" - uv --no-cache venv "${tmpdir}/venv" --python 3.13 >/dev/null - attempts=0 - while true; do - set +e - uv --no-cache pip install --dry-run --no-deps --python "${tmpdir}/venv/bin/python" "${package}==${version}" >/dev/null - status="$?" - set -e - if [[ "$status" -eq 0 ]]; then - break - fi - attempts=$((attempts + 1)) - if [[ "$attempts" -ge 30 ]]; then - rm -rf "$tmpdir" - echo "[X] Timed out waiting for uv to resolve ${package}==${version} from PyPI" >&2 - exit 1 - fi - sleep 10 - done - rm -rf "$tmpdir" } release_python_repo() { diff --git a/etc/package.json b/etc/package.json index d61ef35c..1fc43683 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.35rc19", + "version": "0.9.35rc20", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index 67789edd..2af545fb 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.35rc19" +version = "0.9.35rc20" requires-python = ">=3.13" description = "Self-hosted internet archiving solution." authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}] @@ -79,9 +79,9 @@ dependencies = [ ### Extractor dependencies (optional binaries detected at runtime via shutil.which) ### Binary/Package Management "abxbus==2.5.10", # EventBus API - "abxpkg>=1.11.204", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm - "abx-plugins>=1.11.208", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring - "abx-dl>=1.11.208", # shared ArchiveBox downloader package with blocking install preflight + "abxpkg>=1.11.206", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm + "abx-plugins>=1.11.209", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring + "abx-dl>=1.11.209", # shared ArchiveBox downloader package with blocking install preflight ### UUID7 backport for Python <3.14 "uuid7>=0.1.0; python_version < '3.14'", # provides the uuid_extensions module on Python 3.13 ]