Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fastmcp/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/fastmcp/utilities/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading