Skip to content

Commit 97401f4

Browse files
author
Andrei Neagu
committed
fixed uv cache being included
1 parent 482d95d commit 97401f4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

requirements/tools/check_changes.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,11 @@ def main_changes_stats() -> None:
166166
f'{",".join(to_versions) if to_versions else "🗑️ removed":10s}',
167167
"|",
168168
# how big the version change is
169-
f"{tag_upgrade(sorted(set(before[name]))[-1], sorted(set(after[name]))[-1]):10s}"
170-
if to_versions
171-
else "",
169+
(
170+
f"{tag_upgrade(sorted(set(before[name]))[-1], sorted(set(after[name]))[-1]):10s}"
171+
if to_versions
172+
else ""
173+
),
172174
"|",
173175
counts[name],
174176
"|",
@@ -279,7 +281,7 @@ def main() -> None:
279281
if args.changed_reqs:
280282
main_changes_stats()
281283
else:
282-
repo_wide_changes(exclude={"*/director/*"})
284+
repo_wide_changes(exclude={"*/director/*", "*/.cache/uv/*"})
283285

284286

285287
if __name__ == "__main__":

0 commit comments

Comments
 (0)