-
Notifications
You must be signed in to change notification settings - Fork 1k
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
setup.py silently dies #642
Comments
Verbosity added =) |
Thanks a lot. try: With that I could see where the dll load failure happened. More comments in a few minutes in 641 |
Well usually people get super afraid of tracebacks, and it's only a 2015-03-19 13:10 GMT+01:00 indazoo notifications@github.com:
|
-----BEGIN PGP SIGNED MESSAGE----- I agree the traceback looks scary and shouldn't be there. Maybe have On 03/19/2015 01:12 PM, Guillaume Seguin wrote:
iQIcBAEBAgAGBQJVCr4lAAoJEC9FHFwEZzqVLW4QAIe0anviPsjmlW/kI4QPBGyo |
Agreed & pushed ! |
Hi
In issue #641 I found after long debugging a supressed error message. it's in setup.py.
Below is an idea how to inform the user a bit better so the person don't have to search for hours on the internet.
Damn!!! Ok, I just needed that. Excuse me.
try:
from Cython.Build import cythonize
extensions = cythonize("printrun/gcoder_line.pyx") <== This failed
from Cython.Distutils import build_ext
except Exception, e: <== changed code
print "Imports failed" <== new code
print str(e) <== new code
extensions = None
build_ext = None
The text was updated successfully, but these errors were encountered: