release: archivebox 0.9.35rc21

This commit is contained in:
Nick Sweeting 2026-06-11 00:08:54 -07:00
parent 585c951aa7
commit 9d5ed1bc42
No known key found for this signature in database
3 changed files with 12 additions and 2 deletions

View File

@ -212,6 +212,16 @@ wait_for_pypi() {
sleep 10
done
attempts=0
until uv --no-cache pip install --dry-run --no-deps "${package}==${version}" >/dev/null
do
attempts=$((attempts + 1))
if [[ "$attempts" -ge "$PYPI_WAIT_ATTEMPTS" ]]; then
echo "[X] Timed out waiting for uv to resolve ${package}==${version} from PyPI" >&2
exit 1
fi
sleep 10
done
}
release_python_repo() {

View File

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

View File

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.9.35rc20"
version = "0.9.35rc21"
requires-python = ">=3.13"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]