*: update "conflicting groups" terminology everywhere else

This commit is contained in:
Andrew Gallant 2024-11-13 10:15:47 -05:00 committed by Andrew Gallant
parent 19a044d4db
commit bb78e00a87
28 changed files with 134 additions and 142 deletions

View file

@ -393,10 +393,10 @@ impl Workspace {
}
/// Returns the set of conflicts for the workspace.
pub fn conflicting_groups(&self) -> Conflicts {
pub fn conflicts(&self) -> Conflicts {
let mut conflicting = Conflicts::empty();
for member in self.packages.values() {
conflicting.append(&mut member.pyproject_toml.conflicting_groups());
conflicting.append(&mut member.pyproject_toml.conflicts());
}
conflicting
}