-
Notifications
You must be signed in to change notification settings - Fork 93
Wheel installation issues (dependencies) #79
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
Labels
Comments
minchinweb
referenced
this issue
Nov 16, 2015
Installing from the source distribution (sdist), ushlex and shutil_get_terminal_size were not installed. Putting the condition in install_requires addresses this.
Thanks for reporting. I think my plan of action will be to revert commit bbdfb2a and only provide wheels from now on. |
Fixed in 0.8, only providing wheels (for now). |
Installing from |
Glad to hear that, sorry about the mess with 0.7. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I believe this issue is caused by bbdfb2a.
When installing from wheels, no code is executed (at install time). Thus, code that conditionally determines which dependencies are required will be run when the wheel is generated, rather than when the wheel is installed.
By way of example, I am installing
topydo 0.7.0
on my local machine (Win 10, Python 3.5) from PyPI. I would expect that six, arrow, and colorama would be installed. Instead, I got ushlex, six, python-dateutil, arrow, and backports.shutil-get-terminal-size.Possible solutions include not providing wheels, or at least not universal wheels, or using
extra_requires
(available sincewheel 0.24
, see here and here)The text was updated successfully, but these errors were encountered: