We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f43ef65 commit 03b641cCopy full SHA for 03b641c
1 file changed
.github/scripts/check_version_uniqueness.py
@@ -75,7 +75,7 @@ def get_changed_packages() -> list[str]:
75
for file_path in result.stdout.strip().split("\n"):
76
if file_path.startswith("packages/"):
77
parts = file_path.split("/")
78
- if len(parts) >= 2 and (Path("packages") / parts[1] / "pyproject.toml").exists():
+ if len(parts) >= 3 and parts[2] == "src" and (Path("packages") / parts[1] / "pyproject.toml").exists():
79
changed.add(parts[1])
80
return sorted(changed)
81
0 commit comments