From 2472f35876058930527e3422beb6db067536eb92 Mon Sep 17 00:00:00 2001 From: Alex Lavaee <57336517+lavaman131@users.noreply.github.com> Date: Mon, 8 Sep 2025 17:23:02 -0700 Subject: [PATCH] fixed incorrect tool.uv.sources config in python package installation instructions (#651) Co-authored-by: Alex Lavaee --- .../getting-started/package_installation.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/user-documentation-python/getting-started/package_installation.md b/user-documentation-python/getting-started/package_installation.md index 48fafdd5a0..51b9d8dd5c 100644 --- a/user-documentation-python/getting-started/package_installation.md +++ b/user-documentation-python/getting-started/package_installation.md @@ -69,10 +69,10 @@ dependencies = [ [tool.uv] prerelease = "if-necessary-or-explicit" [tool.uv.sources] -"agent-framework" = { git = "https://github.com/microsoft/agent-framework.git", ref = "main", subdirectory = "python/packages/main" } -"agent-framework-azure" = { git = "https://github.com/microsoft/agent-framework.git", ref = "main", subdirectory = "python/packages/azure" } -"agent-framework-foundry" = { git = "https://github.com/microsoft/agent-framework.git", ref = "main", subdirectory = "python/packages/foundry" } -"agent-framework-workflow" = { git = "https://github.com/microsoft/agent-framework.git", ref = "main", subdirectory = "python/packages/workflow" } +"agent-framework" = { git = "https://github.com/microsoft/agent-framework.git", branch = "main", subdirectory = "python/packages/main" } +"agent-framework-azure" = { git = "https://github.com/microsoft/agent-framework.git", branch = "main", subdirectory = "python/packages/azure" } +"agent-framework-foundry" = { git = "https://github.com/microsoft/agent-framework.git", branch = "main", subdirectory = "python/packages/foundry" } +"agent-framework-workflow" = { git = "https://github.com/microsoft/agent-framework.git", branch = "main", subdirectory = "python/packages/workflow" } ``` Then create a virtual environment: ```bash