From f62becc1c769be98be85097884df44b94c27711e Mon Sep 17 00:00:00 2001 From: Varun Satyadev Shetty Date: Thu, 18 Sep 2025 19:23:27 -0400 Subject: [PATCH 1/3] making sure there is no discrepancy with main --- uv.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uv.lock b/uv.lock index 32dcd1f5..e479ae67 100644 --- a/uv.lock +++ b/uv.lock @@ -1027,7 +1027,7 @@ wheels = [ [[package]] name = "opensourceleg" -version = "3.4.0" +version = "3.3.0" source = { editable = "." } dependencies = [ { name = "numpy" }, From 3f13d19299fbb3cc845bf359bf319514ed0019ba Mon Sep 17 00:00:00 2001 From: Varun Satyadev Shetty Date: Mon, 13 Oct 2025 11:53:40 -0400 Subject: [PATCH 2/3] updated docs/installtion.md for installing uv --- docs/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.md b/docs/installation.md index 4d093b35..0e2b31f3 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -119,12 +119,12 @@ This section is for those who want to contribute to opensourceleg or need to mod pip install uv --break-system-packages ``` - In your `.bashrc` script, add the following line: + If you are unable to install uv in your `.bashrc` script add the following line: ```bash - export PATH="$PATH:/home/username/.local/bin" + export PATH="$PATH:/home/$USER/.local/bin" ``` - Then reload your shell configuration: + Then, open a new shell or reload your shell configuration: ```bash source ~/.bashrc ``` From 96907c4fde92455f5889791e86a98d88f9e5a115 Mon Sep 17 00:00:00 2001 From: Varun Satyadev Shetty Date: Mon, 13 Oct 2025 12:39:08 -0400 Subject: [PATCH 3/3] updated doc/installation.md for uv install --- docs/installation.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/installation.md b/docs/installation.md index 0e2b31f3..5e9e337b 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -115,11 +115,13 @@ This section is for those who want to contribute to opensourceleg or need to mod pip install uv ``` OR + If you are unable to install uv, do + ```bash pip install uv --break-system-packages ``` - If you are unable to install uv in your `.bashrc` script add the following line: + If you are unable to find uv command then add following line in your `.bashrc` script : ```bash export PATH="$PATH:/home/$USER/.local/bin" ```