What is meant by "warning: no previously-included files found matching..."? #4905
-
Given the project using
where
and
When I run
Could somebody shed some light on this for me please? Is there something which I need to correct as the warning seems to contradict the correct result. I wondered if not having |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If I am not mistaken, you don't need to worry about that one (it is a Possibly happens because when you run I suppose you can turn the warnings filter up if you want to check which warnings are actionable by exporting |
Beta Was this translation helpful? Give feedback.
-
@abravalheri Thanks for your answer. Enabling I did notice the above mentioned warnings appear after the Safely ignoring the warnings! |
Beta Was this translation helpful? Give feedback.
If I am not mistaken, you don't need to worry about that one (it is a
logging.warnging
, not awarnings.warn
).Possibly happens because when you run
python -m build
the wheel is built from the sdist, which already does not contain the file? (MANIFEST.in
predateswheel
).I suppose you can turn the warnings filter up if you want to check which warnings are actionable by exporting
PYTHONWARNINGS=error
?