release: archivebox 0.9.35rc20

This commit is contained in:
Nick Sweeting 2026-06-11 00:00:21 -07:00
parent 635e318647
commit 585c951aa7
No known key found for this signature in database
3 changed files with 5 additions and 26 deletions

View File

@ -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() {

View File

@ -1,6 +1,6 @@
{
"name": "archivebox",
"version": "0.9.35rc19",
"version": "0.9.35rc20",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -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
]