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
Tests should not be installed in the top-level of site-packages.
Here's my fix:
--- setup.py.orig 2025-01-14 16:56:45.972299015 +0000
+++ setup.py
@@ -77,7 +77,7 @@ setup(
'Information and documentation can be found at '
'https://github.com/gruns/icecream.'),
platforms=['any'],
- packages=find_packages(),
+ packages=find_packages(exclude=['tests']),
include_package_data=True,
classifiers=[
'License :: OSI Approved :: MIT License',
The text was updated successfully, but these errors were encountered:
Tests should not be installed in the top-level of
site-packages
.Here's my fix:
The text was updated successfully, but these errors were encountered: