diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcace7dd..91061d6b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -143,18 +143,7 @@ jobs: TOOL_ROOT="$(mktemp -d)" export UV_TOOL_DIR="$TOOL_ROOT/tools" export UV_TOOL_BIN_DIR="$TOOL_ROOT/bin" - WHEEL_URL="$("$UV_BINARY" run --no-cache --no-project python - "$VERSION" <<'PY' - import json - import sys - import urllib.request - - version = sys.argv[1] - with urllib.request.urlopen(f"https://pypi.org/pypi/archivebox/{version}/json", timeout=20) as response: - data = json.load(response) - print(next(url["url"] for url in data["urls"] if url["filename"].endswith(".whl"))) - PY - )" - "$UV_BINARY" tool install --no-cache --prerelease allow --force "$WHEEL_URL" + "$UV_BINARY" tool install --no-cache --prerelease allow --force "archivebox==$VERSION" INSTALLED_VERSION="$("$UV_TOOL_BIN_DIR/archivebox" --version)" test "$INSTALLED_VERSION" = "$VERSION" diff --git a/etc/package.json b/etc/package.json index d9f12fc1..d2049bd8 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.35rc189", + "version": "0.9.35rc190", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index e6e31857..6e55cfa9 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.35rc189" +version = "0.9.35rc190" requires-python = ">=3.13" description = "Self-hosted internet archiving solution." authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}] @@ -344,7 +344,7 @@ Donate = "https://github.com/ArchiveBox/ArchiveBox/wiki/Donations" [tool.bumpver] -current_version = "v0.9.35rc189" +current_version = "v0.9.35rc190" version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "bump version {old_version} -> {new_version}" tag_message = "{new_version}" diff --git a/uv.lock b/uv.lock index 760ec6f7..34fdc6b8 100644 --- a/uv.lock +++ b/uv.lock @@ -123,7 +123,7 @@ wheels = [ [[package]] name = "archivebox" -version = "0.9.35rc189" +version = "0.9.35rc190" source = { editable = "." } dependencies = [ { name = "abx-dl", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },