Remove warning about packages not containing __init__.py
files
#151
+43
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Originally distutils implementation did not account for PEP 420 and included warns for package directories that did not contain
__init__.py
files.After the acceptance of PEP 420, these warnings don't make more sense and sometimes can confuse users.
Recently this was pointed out in one of
setuptools
discussions: pypa/setuptools#3353 (reply in thread).This PR removes the warning (and adds a test capturing the expectation).
Since the only change is a warning removal, this can be seen as a "progressive enhancement" over the versions of distutils existing in the standard library:
SETUPTOOLS_USE_DISTUTILS=stdlib
will still see the warning, but the build will not fail or change in terms of outcome