Skip to content

Commit

Permalink
Allow imports of setuptools.dep_util.newer_group with deprecation war…
Browse files Browse the repository at this point in the history
…ning
  • Loading branch information
abravalheri committed Nov 21, 2023
1 parent 536d4a8 commit e1f8783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptools/dep_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


def __getattr__(name):
if name not in ['newer_pairwise_group']:
if name not in ['newer_group', 'newer_pairwise_group']:
raise AttributeError(name)
warnings.warn(
"dep_util is Deprecated. Use functions from setuptools.modified instead.",
Expand Down

0 comments on commit e1f8783

Please sign in to comment.