feat/#28 uv support (#62)

* follow proper consistent naming in pypi packagemanager

* follow proper consistent naming in pypi packagemanager - 2

* feat: add specialized command parsers to handle pip and uv command formats

* add uv support & modify extractor to be more robust

* add uv alias

* refactor var name & add error handling

* update readme & add support for `uv pip sync` cmd
This commit is contained in:
Sahil Bansal
2025-08-06 21:10:51 +05:30
committed by GitHub
parent 2cbb24b3b1
commit fd7d83704f
14 changed files with 478 additions and 197 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ func TestPipGetLatestMatchingVersion(t *testing.T) {
for _, tc := range cases {
t.Run(tc.name, func(t *testing.T) {
version, err := pipGetMatchingVersion(tc.packageName, tc.versionConstraint)
version, err := pypiGetMatchingVersion(tc.packageName, tc.versionConstraint)
tc.assertFn(t, version, err)
})
}