We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be1575c commit e0ac0a4Copy full SHA for e0ac0a4
scripts/griffe_check.py
@@ -50,6 +50,8 @@ def main():
50
)
51
52
breakages = list(griffe.find_breaking_changes(against, base))
53
+ # exclude version bumps from breakages as they are expected
54
+ breakages = [b for b in breakages if b._format_title() != "__version__"]
55
56
if breakages:
57
for b in breakages:
0 commit comments