diff --git a/docs/cli.md b/docs/cli.md index e9735435975..c4980007b35 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -754,7 +754,7 @@ poetry python install ### python list The `python list` command shows Python versions available in the environment. This includes both installed and -discovered System Managed and Poetry Managed installations. +discovered System managed and Poetry managed installations. ```bash poetry python list diff --git a/src/poetry/console/commands/python/install.py b/src/poetry/console/commands/python/install.py index d6569d0a005..6a0bc7528c2 100644 --- a/src/poetry/console/commands/python/install.py +++ b/src/poetry/console/commands/python/install.py @@ -46,7 +46,10 @@ class PythonInstallCommand(Command): ), ] - description = "Install the specified Python version from the Python Standalone Builds project." + description = ( + "Install the specified Python version from the Python Standalone Builds project." + " (experimental feature)" + ) def handle(self) -> int: request = self.argument("python") diff --git a/src/poetry/console/commands/python/list.py b/src/poetry/console/commands/python/list.py index ac15794537a..4c628f3ab9c 100644 --- a/src/poetry/console/commands/python/list.py +++ b/src/poetry/console/commands/python/list.py @@ -40,7 +40,10 @@ class PythonListCommand(Command): option("managed", "m", "List only Poetry managed Python versions.", flag=True), ] - description = "Shows Python versions available for this environment." + description = ( + "Shows Python versions available for this environment." + " (experimental feature)" + ) def handle(self) -> int: rows: list[PythonInfo] = [] diff --git a/src/poetry/console/commands/python/remove.py b/src/poetry/console/commands/python/remove.py index 08c571fcea8..2f17628da28 100644 --- a/src/poetry/console/commands/python/remove.py +++ b/src/poetry/console/commands/python/remove.py @@ -36,7 +36,10 @@ class PythonRemoveCommand(Command): ), ] - description = "Remove the specified Python version if managed by Poetry." + description = ( + "Remove the specified Python version if managed by Poetry." + " (experimental feature)" + ) @staticmethod def remove_python_installation(request: str, implementation: str, io: IO) -> int: