[bug] "compiled" file count in --inspect
misses static libraries
#279
Labels
bug
Something isn't working
--inspect
misses static libraries
#279
What did you expect to happen?
The output of
pydistcheck --inspect
prints the number of compiled files within a distribution.pydistcheck/src/pydistcheck/inspect.py
Line 26 in 471660e
That count appears to miss static libraries.
What actually happened?
Static libraries should be counted in the count of compiled files.
How can someone else reproduce this problem?
Consider the following.
docker run --rm -it python:3.12 bash pip download \ --no-deps \ --extra-index-url https://pypi.nvidia.com \ 'librmm-cu12==24.10'
That project has some static library files.
But those are not reported as "compiled" by
pydistcheck --inspect
.You'll see output that begins like this:
I'd expected that
(0 compiled)
to actually say(2 compiled)
.What version of
pydistcheck
are you using?0.8.0
Notes
No response
The text was updated successfully, but these errors were encountered: