Skip to content
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

Fallback to Pure Python if Compilation fails #76

Merged
merged 1 commit into from Sep 12, 2017

Commits on Sep 8, 2017

  1. Fallback to Pure Python if Compilation fails

    Originally this code attempted to determine if compiling the C ext
    would succeed, and if it thought it should, it would then require that
    the C extension succeed in order to install. This fails in cases where
    the detection code passes, but compiling ultimately fails (one instance
    this might happen is if the Python headers are not installed).
    
    Instead of "asking permission", this code will now just attempt to
    compile the module, and will fall back to pure Python if that fails,
    unless the person has explicitly asked for the C module, in which case
    it will still just fail.
    dstufft committed Sep 8, 2017
    Copy the full SHA
    fb90e51 View commit details
    Browse the repository at this point in the history