-
-
Notifications
You must be signed in to change notification settings - Fork 668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installing installs the tests package #456
Labels
Comments
Thanks for spotting this! Pull request would be very welcome. |
Bumping this, as the previous fix is passing the wrong type, and not actually addressing the issue... The |
Yes this is still a bug! |
simonw
pushed a commit
that referenced
this issue
Jul 24, 2020
The `exclude` argument to `find_packages` needs an iterable of package names. Closes #456 - thanks, @abeyerpath!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because
setup.py
usesfind_packages
andtests
is on the top-level,pip install datasette
will install a top-level package calledtests
, which is probably not desired behavior.The offending line is here:
datasette/setup.py
Line 40 in bfa2ae0
And only
pip uninstall datasette
with a conflicting package would warn you by default; apparently another package had the same problem, which is why I get this message when uninstalling:This should be a relatively simple fix, and I could drop a PR if desired!
Cheers
The text was updated successfully, but these errors were encountered: