From c5ff3660a4f85785bea84ce912ec6a76996c7a4a Mon Sep 17 00:00:00 2001 From: harupy <17039389+harupy@users.noreply.github.com> Date: Sat, 24 Jan 2026 00:41:53 +0900 Subject: [PATCH 1/2] Add uv sync as alternative installation option Co-Authored-By: Claude Opus 4.5 --- python/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/README.md b/python/README.md index 3fc1300d..74ca1885 100644 --- a/python/README.md +++ b/python/README.md @@ -8,6 +8,8 @@ Python SDK for programmatic control of GitHub Copilot CLI via JSON-RPC. ```bash pip install -e . +# or +uv sync ``` ## Quick Start From 4a18d48e8e9f62db1ca652b60092934f07db0b8a Mon Sep 17 00:00:00 2001 From: Adrien Friggeri Date: Fri, 23 Jan 2026 13:25:05 -0700 Subject: [PATCH 2/2] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- python/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/README.md b/python/README.md index 74ca1885..6517e8bc 100644 --- a/python/README.md +++ b/python/README.md @@ -7,9 +7,9 @@ Python SDK for programmatic control of GitHub Copilot CLI via JSON-RPC. ## Installation ```bash -pip install -e . +pip install -e ".[dev]" # or -uv sync +uv pip install -e ".[dev]" ``` ## Quick Start