You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The wheel built for this project contains a tests package, which should definitely not be distributed: Its name is very generic, clashes easily with other (local) packages of the same name, leading to obscure and hard-to-find bugs. This is probably just an oversight and easily fixed in setup.py by using
packages=find_packages(exclude=["tests"]),
instead of
packages=find_packages(),
The text was updated successfully, but these errors were encountered:
The wheel built for this project contains a
tests
package, which should definitely not be distributed: Its name is very generic, clashes easily with other (local) packages of the same name, leading to obscure and hard-to-find bugs. This is probably just an oversight and easily fixed insetup.py
by usinginstead of
The text was updated successfully, but these errors were encountered: