Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit 6acb4aa

Browse files
committed
ci: Ignore duplicate files when linting package
We use a github action: https://github.com/hynek/build-and-inspect-python-package?tab=readme-ov-file which runs a script to lint the python wheel it builds: https://pypi.org/project/check-wheel-contents/ This tool is warning about duplicate files between v2 and v3. The skills schema did not change intentionally and we still want a copy in both places. Signed-off-by: Russell Bryant <[email protected]>
1 parent 3e808f1 commit 6acb4aa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,8 @@ disable = [
6969
[tool.pylint.reports]
7070
reports = true
7171
score = true
72+
73+
[tool.check-wheel-contents]
74+
ignore = [
75+
"W002", # ignore duplicate files
76+
]

0 commit comments

Comments
 (0)