mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
release: archivebox 0.9.35rc21
This commit is contained in:
parent
585c951aa7
commit
9d5ed1bc42
@ -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() {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "archivebox",
|
||||
"version": "0.9.35rc20",
|
||||
"version": "0.9.35rc21",
|
||||
"repository": "github:ArchiveBox/ArchiveBox",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
|
||||
@ -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"}]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user