-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(python): add support for poetry dev dependencies #8152
Changes from 3 commits
4ab4d2b
6186b7d
a055b20
71743c1
05bb7bd
b5bafda
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -104,45 +104,46 @@ func (a poetryAnalyzer) mergePyProject(fsys fs.FS, dir string, app *types.Applic | |||||||||||||||||||||||||||||
return xerrors.Errorf("unable to parse %s: %w", path, err) | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// Identify the direct/transitive dependencies | ||||||||||||||||||||||||||||||
prodRootDeps := project.Tool.Poetry.Dependencies | ||||||||||||||||||||||||||||||
directDeps := prodRootDeps.Union(getDevDeps(project)) | ||||||||||||||||||||||||||||||
prodDeps := getProdPackages(app, prodRootDeps) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
// Identify the direct/transitive/dev dependencies | ||||||||||||||||||||||||||||||
for i, pkg := range app.Packages { | ||||||||||||||||||||||||||||||
if project.Tool.Poetry.Dependencies.Contains(pkg.Name) { | ||||||||||||||||||||||||||||||
app.Packages[i].Dev = !prodDeps.Contains(pkg.ID) | ||||||||||||||||||||||||||||||
if directDeps.Contains(pkg.Name) { | ||||||||||||||||||||||||||||||
app.Packages[i].Relationship = types.RelationshipDirect | ||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||
app.Packages[i].Indirect = true | ||||||||||||||||||||||||||||||
app.Packages[i].Relationship = types.RelationshipIndirect | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
filterProdPackages(project, app) | ||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
func filterProdPackages(project pyproject.PyProject, app *types.Application) { | ||||||||||||||||||||||||||||||
func getDevDeps(project pyproject.PyProject) set.Set[string] { | ||||||||||||||||||||||||||||||
deps := set.New[string]() | ||||||||||||||||||||||||||||||
for _, groupDeps := range project.Tool.Poetry.Groups { | ||||||||||||||||||||||||||||||
deps.Append(groupDeps.Dependencies.Items()...) | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
return deps | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I suggest 2 changes:
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
func getProdPackages(app *types.Application, prodRootDeps set.Set[string]) set.Set[string] { | ||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||
packages := lo.SliceToMap(app.Packages, func(pkg types.Package) (string, types.Package) { | ||||||||||||||||||||||||||||||
return pkg.ID, pkg | ||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
visited := set.New[string]() | ||||||||||||||||||||||||||||||
deps := project.Tool.Poetry.Dependencies | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
for group, groupDeps := range project.Tool.Poetry.Groups { | ||||||||||||||||||||||||||||||
if group == "dev" { | ||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
deps.Set = deps.Union(groupDeps.Dependencies) | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
for _, pkg := range packages { | ||||||||||||||||||||||||||||||
if !deps.Contains(pkg.Name) { | ||||||||||||||||||||||||||||||
if !prodRootDeps.Contains(pkg.Name) { | ||||||||||||||||||||||||||||||
continue | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
walkPackageDeps(pkg.ID, packages, visited) | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
app.Packages = lo.Filter(app.Packages, func(pkg types.Package, _ int) bool { | ||||||||||||||||||||||||||||||
return visited.Contains(pkg.ID) | ||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||
return visited | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
func walkPackageDeps(pkgID string, packages map[string]types.Package, visited set.Set[string]) { | ||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -187,17 +187,31 @@ func Test_poetryLibraryAnalyzer_Analyze(t *testing.T) { | |
// export PATH="/root/.local/bin:$PATH" | ||
// poetry new groups && cd groups | ||
// poetry add [email protected] | ||
// poetry add [email protected] --extras socks | ||
// poetry add --optional [email protected] | ||
// poetry add --group dev [email protected] | ||
// poetry add --group lint [email protected] | ||
// poetry add --optional [email protected] | ||
name: "skip deps from groups", | ||
name: "with groups", | ||
dir: "testdata/with-groups", | ||
want: &analyzer.AnalysisResult{ | ||
Applications: []types.Application{ | ||
{ | ||
Type: types.Poetry, | ||
FilePath: "poetry.lock", | ||
Packages: types.Packages{ | ||
{ | ||
ID: "[email protected]", | ||
Name: "anyio", | ||
Version: "4.7.0", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
DependsOn: []string{ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
}, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "certifi", | ||
|
@@ -212,20 +226,105 @@ func Test_poetryLibraryAnalyzer_Analyze(t *testing.T) { | |
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "colorama", | ||
Version: "0.4.6", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
Dev: true, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "exceptiongroup", | ||
Version: "1.2.2", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "h11", | ||
Version: "0.14.0", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "httpcore", | ||
Version: "1.0.7", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
DependsOn: []string{ | ||
"[email protected]", | ||
"[email protected]", | ||
}, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "httpx", | ||
Version: "0.28.1", | ||
Relationship: types.RelationshipDirect, | ||
DependsOn: []string{ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
}, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "idna", | ||
Version: "3.10", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "iniconfig", | ||
Version: "2.0.0", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
Dev: true, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "mypy-extensions", | ||
Version: "1.0.0", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "packaging", | ||
Version: "24.2", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
Dev: true, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "pluggy", | ||
Version: "1.5.0", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
Dev: true, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "pytest", | ||
Version: "8.3.4", | ||
Relationship: types.RelationshipDirect, | ||
Dev: true, | ||
DependsOn: []string{ | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
"[email protected]", | ||
}, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "requests", | ||
|
@@ -242,8 +341,30 @@ func Test_poetryLibraryAnalyzer_Analyze(t *testing.T) { | |
ID: "[email protected]", | ||
Name: "ruff", | ||
Version: "0.8.3", | ||
Relationship: types.RelationshipDirect, | ||
Dev: true, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "sniffio", | ||
Version: "1.3.1", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "socksio", | ||
Version: "1.0.0", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
Name: "tomli", | ||
Version: "2.2.1", | ||
Indirect: true, | ||
Relationship: types.RelationshipIndirect, | ||
Dev: true, | ||
}, | ||
{ | ||
ID: "[email protected]", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
link for
Include
(#8134 (comment))