mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-20 20:44:17 +02:00
Use pip instead of uv pip in upgrade instructions (#2841)
This commit is contained in:
parent
7628c4380f
commit
df5765cef3
2 changed files with 2 additions and 2 deletions
|
|
@ -129,7 +129,7 @@ def version(
|
|||
console.print(
|
||||
f"[bold]🎉 FastMCP update available:[/bold] [green]{newer_version}[/green]"
|
||||
)
|
||||
console.print("[dim]Run: uv pip install --upgrade fastmcp[/dim]")
|
||||
console.print("[dim]Run: pip install --upgrade fastmcp[/dim]")
|
||||
|
||||
|
||||
@app.command
|
||||
|
|
|
|||
|
|
@ -267,7 +267,7 @@ def log_server_banner(server: FastMCP[Any]) -> None:
|
|||
("🎉 Update available: ", "bold"),
|
||||
(newer_version, "bold green"),
|
||||
)
|
||||
update_line2 = Text("Run: uv pip install --upgrade fastmcp", style="dim")
|
||||
update_line2 = Text("Run: pip install --upgrade fastmcp", style="dim")
|
||||
update_notice = Panel(
|
||||
Group(Align.center(update_line1), Align.center(update_line2)),
|
||||
border_style="blue",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue