Skip to content

Commit

Permalink
Adjust ignored warning for pkg_resources
Browse files Browse the repository at this point in the history
Under Python 3.6, pkg_resources chokes on namespace packages, as seen
with zest.releaser. Ignore that warning.
  • Loading branch information
rbarrois committed Oct 10, 2020
1 parent 9ce1825 commit ef843d6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Expand Up @@ -7,7 +7,8 @@ PYWARNINGS = -Wdefault -Werror \
-Wignore::PendingDeprecationWarning:imp \
-Wignore::DeprecationWarning:imp \
-Wignore::PendingDeprecationWarning:distutils \
-Wignore::DeprecationWarning:distutils
-Wignore::DeprecationWarning:distutils \
-Wignore::ImportWarning:

default:

Expand Down

0 comments on commit ef843d6

Please sign in to comment.