release: archivebox 0.9.31rc20
Some checks are pending
CodeQL / Analyze (${{ matrix.language }}) (none, python) (push) Waiting to run
Build Debian package / build (amd64) (push) Waiting to run
Build Debian package / build (arm64) (push) Waiting to run
Build Debian package / test (amd64, ubuntu-24.04) (push) Blocked by required conditions
Build Debian package / test (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
Build Debian package / release (push) Blocked by required conditions
Build Docker image / buildx (push) Waiting to run
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Release State / release-state (push) Waiting to run
Parallel Tests / Discover test files (push) Waiting to run
Parallel Tests / ${{ matrix.test.name }} (push) Blocked by required conditions
Parallel Tests / ${{ matrix.plugin.name }} (push) Blocked by required conditions
Run tests / python_tests (ubuntu-22.04, 3.13) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run

This commit is contained in:
Nick Sweeting 2026-05-23 19:36:09 -07:00
parent b25b4b6b1b
commit fb9f4a724b
No known key found for this signature in database
3 changed files with 21 additions and 5 deletions

View File

@ -173,6 +173,22 @@ PY
fi
sleep 10
done
local tmpdir
tmpdir="$(mktemp -d)"
uv --no-cache venv "${tmpdir}/venv" --python 3.13 >/dev/null
attempts=0
until uv --no-cache pip install --dry-run --no-deps --python "${tmpdir}/venv/bin/python" "${package}==${version}" >/dev/null
do
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.31rc19",
"version": "0.9.31rc20",
"repository": "github:ArchiveBox/ArchiveBox",
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.31rc19"
version = "0.9.31rc20"
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.4", # EventBus API
"abxpkg>=1.10.13", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm
"abx-plugins>=1.10.79", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring
"abx-dl>=1.10.79", # shared ArchiveBox downloader package with blocking install preflight
"abxpkg>=1.10.14", # for: detecting, versioning, and installing binaries via apt/brew/pip/npm
"abx-plugins>=1.10.80", # shared ArchiveBox plugin package with Chrome/Puppeteer dependency wiring
"abx-dl>=1.10.80", # 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
]