mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 10:58:28 +00:00
273 lines
8.7 KiB
Python
273 lines
8.7 KiB
Python
# /// script
|
|
# requires-python = ">=3.12"
|
|
# dependencies = [
|
|
# "httpx>=0.27.2,<0.28",
|
|
# "packaging>=24.1,<25",
|
|
# ]
|
|
# ///
|
|
|
|
"""
|
|
Test `uv publish` by uploading a new version of astral-test-<test case> to one of
|
|
multiple indexes, exercising different options of passing credentials.
|
|
|
|
Locally, execute the credentials setting script, then run:
|
|
```shell
|
|
uv run scripts/publish/test_publish.py local
|
|
```
|
|
|
|
# Setup
|
|
|
|
**pypi-token**
|
|
Set the `UV_TEST_PUBLISH_TOKEN` environment variables.
|
|
|
|
**pypi-password-env**
|
|
Set the `UV_TEST_PUBLISH_PASSWORD` environment variable.
|
|
This project also uses token authentication since it's the only thing that PyPI
|
|
supports, but they both CLI options.
|
|
|
|
**pypi-keyring**
|
|
```console
|
|
uv pip install keyring
|
|
keyring set https://test.pypi.org/legacy/?astral-test-keyring __token__
|
|
```
|
|
The query parameter a horrible hack stolen from
|
|
https://github.com/pypa/twine/issues/565#issue-555219267
|
|
to prevent the other projects from implicitly using the same credentials.
|
|
|
|
**pypi-trusted-publishing**
|
|
This one only works in GitHub Actions on astral-sh/uv in `ci.yml` - sorry!
|
|
|
|
**gitlab**
|
|
The username is astral-test-user, the password is a token.
|
|
Web: https://gitlab.com/astral-test-publish/astral-test-token/-/packages
|
|
Docs: https://docs.gitlab.com/ee/user/packages/pypi_repository/
|
|
|
|
**codeberg**
|
|
The username is astral-test-user, the password is a token (the actual account password would also
|
|
work).
|
|
Web: https://codeberg.org/astral-test-user/-/packages/pypi/astral-test-token/0.1.0
|
|
Docs: https://forgejo.org/docs/latest/user/packages/pypi/
|
|
"""
|
|
|
|
import os
|
|
import re
|
|
from argparse import ArgumentParser
|
|
from pathlib import Path
|
|
from shutil import rmtree
|
|
from subprocess import check_call
|
|
|
|
import httpx
|
|
from packaging.utils import parse_sdist_filename, parse_wheel_filename
|
|
|
|
cwd = Path(__file__).parent
|
|
|
|
# Map CLI target name to package name.
|
|
# Trusted publishing can only be tested on GitHub Actions, so we have separate local
|
|
# and all targets.
|
|
local_targets = {
|
|
"pypi-token": "astral-test-token",
|
|
"pypi-password-env": "astral-test-password",
|
|
"pypi-keyring": "astral-test-keyring",
|
|
"gitlab": "astral-test-token",
|
|
"codeberg": "astral-test-token",
|
|
"cloudsmith": "astral-test-token",
|
|
}
|
|
all_targets = local_targets | {
|
|
"pypi-trusted-publishing": "astral-test-trusted-publishing"
|
|
}
|
|
|
|
project_urls = {
|
|
"astral-test-password": ["https://test.pypi.org/simple/astral-test-password/"],
|
|
"astral-test-keyring": ["https://test.pypi.org/simple/astral-test-keyring/"],
|
|
"astral-test-trusted-publishing": [
|
|
"https://test.pypi.org/simple/astral-test-trusted-publishing/"
|
|
],
|
|
"astral-test-token": [
|
|
"https://test.pypi.org/simple/astral-test-token/",
|
|
"https://gitlab.com/api/v4/projects/61853105/packages/pypi/simple/astral-test-token",
|
|
"https://codeberg.org/api/packages/astral-test-user/pypi/simple/astral-test-token",
|
|
"https://dl.cloudsmith.io/public/astral-test/astral-test-1/python/simple/astral-test-token/",
|
|
],
|
|
}
|
|
|
|
|
|
def get_new_version(project_name: str, client: httpx.Client) -> str:
|
|
"""Return the next free path version on pypi"""
|
|
# To keep the number of packages small we reuse them across targets, so we have to
|
|
# pick a version that doesn't exist on any target yet
|
|
versions = set()
|
|
for url in project_urls[project_name]:
|
|
try:
|
|
data = client.get(url).text
|
|
except httpx.HTTPError as err:
|
|
raise RuntimeError(f"Failed to fetch {url}") from err
|
|
href_text = "<a[^>]+>([^<>]+)</a>"
|
|
for filename in list(m.group(1) for m in re.finditer(href_text, data)):
|
|
if filename.endswith(".whl"):
|
|
[_name, version, _build, _tags] = parse_wheel_filename(filename)
|
|
else:
|
|
[_name, version] = parse_sdist_filename(filename)
|
|
versions.add(version)
|
|
max_version = max(versions)
|
|
|
|
# Bump the path version to obtain an empty version
|
|
release = list(max_version.release)
|
|
release[-1] += 1
|
|
return ".".join(str(i) for i in release)
|
|
|
|
|
|
def create_project(project_name: str, uv: Path, client: httpx.Client):
|
|
if cwd.joinpath(project_name).exists():
|
|
rmtree(cwd.joinpath(project_name))
|
|
check_call([uv, "init", "--lib", project_name], cwd=cwd)
|
|
pyproject_toml = cwd.joinpath(project_name).joinpath("pyproject.toml")
|
|
|
|
# Set to an unclaimed version
|
|
toml = pyproject_toml.read_text()
|
|
new_version = get_new_version(project_name, client)
|
|
toml = re.sub('version = ".*"', f'version = "{new_version}"', toml)
|
|
pyproject_toml.write_text(toml)
|
|
|
|
|
|
def publish_project(target: str, uv: Path, client: httpx.Client):
|
|
project_name = all_targets[target]
|
|
|
|
print(f"\nPublish {project_name} for {target}")
|
|
|
|
# Create the project
|
|
create_project(project_name, uv, client)
|
|
|
|
# Build the project
|
|
check_call([uv, "build"], cwd=cwd.joinpath(project_name))
|
|
|
|
# Upload the project
|
|
if target == "pypi-token":
|
|
env = os.environ.copy()
|
|
env["UV_PUBLISH_TOKEN"] = os.environ["UV_TEST_PUBLISH_TOKEN"]
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://test.pypi.org/legacy/",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
env=env,
|
|
)
|
|
elif target == "pypi-password-env":
|
|
env = os.environ.copy()
|
|
env["UV_PUBLISH_PASSWORD"] = os.environ["UV_TEST_PUBLISH_PASSWORD"]
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://test.pypi.org/legacy/",
|
|
"--username",
|
|
"__token__",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
env=env,
|
|
)
|
|
elif target == "pypi-keyring":
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://test.pypi.org/legacy/?astral-test-keyring",
|
|
"--username",
|
|
"__token__",
|
|
"--keyring-provider",
|
|
"subprocess",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
)
|
|
elif target == "pypi-trusted-publishing":
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://test.pypi.org/legacy/",
|
|
"--trusted-publishing",
|
|
"always",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
)
|
|
elif target == "gitlab":
|
|
env = os.environ.copy()
|
|
env["UV_PUBLISH_PASSWORD"] = os.environ["UV_TEST_PUBLISH_GITLAB_PAT"]
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://gitlab.com/api/v4/projects/61853105/packages/pypi",
|
|
"--username",
|
|
"astral-test-gitlab-pat",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
env=env,
|
|
)
|
|
elif target == "codeberg":
|
|
env = os.environ.copy()
|
|
env["UV_PUBLISH_USERNAME"] = "astral-test-user"
|
|
env["UV_PUBLISH_PASSWORD"] = os.environ["UV_TEST_PUBLISH_CODEBERG_TOKEN"]
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://codeberg.org/api/packages/astral-test-user/pypi",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
env=env,
|
|
)
|
|
elif target == "cloudsmith":
|
|
env = os.environ.copy()
|
|
env["UV_PUBLISH_TOKEN"] = os.environ["UV_TEST_PUBLISH_CLOUDSMITH_TOKEN"]
|
|
check_call(
|
|
[
|
|
uv,
|
|
"publish",
|
|
"--publish-url",
|
|
"https://python.cloudsmith.io/astral-test/astral-test-1/",
|
|
],
|
|
cwd=cwd.joinpath(project_name),
|
|
env=env,
|
|
)
|
|
else:
|
|
raise ValueError(f"Unknown target: {target}")
|
|
|
|
|
|
def main():
|
|
parser = ArgumentParser()
|
|
target_choices = list(all_targets) + ["local", "all"]
|
|
parser.add_argument("targets", choices=target_choices, nargs="+")
|
|
parser.add_argument("--uv")
|
|
args = parser.parse_args()
|
|
|
|
if args.uv:
|
|
# We change the working directory for the subprocess calls, so we have to
|
|
# absolutize the path.
|
|
uv = Path.cwd().joinpath(args.uv)
|
|
else:
|
|
check_call(["cargo", "build"])
|
|
executable_suffix = ".exe" if os.name == "nt" else ""
|
|
uv = cwd.parent.parent.joinpath(f"target/debug/uv{executable_suffix}")
|
|
|
|
if args.targets == ["local"]:
|
|
targets = list(local_targets)
|
|
elif args.targets == ["all"]:
|
|
targets = list(all_targets)
|
|
else:
|
|
targets = args.targets
|
|
|
|
with httpx.Client(timeout=120) as client:
|
|
for project_name in targets:
|
|
publish_project(project_name, uv, client)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|