mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

Fixes broken test in #6375 Tested here with: ```sh cargo run run --exclude-newer=2024-03-25T00:00:00Z scripts/uv-run-remote-script-test.py CI ```
13 lines
243 B
Python
13 lines
243 B
Python
# This file is used to test `uv run <url>` in ../crates/uv/tests/run.rs
|
|
# /// script
|
|
# requires-python = ">=3.11"
|
|
# dependencies = [
|
|
# "rich==13.7.1",
|
|
# ]
|
|
# ///
|
|
import sys
|
|
|
|
import rich
|
|
|
|
who = sys.argv[1]
|
|
rich.print(f"Hello {who}, from uv!")
|