We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When check-manifest 0.26 tries to run python setup.py sdist in a subprocess, it gets this error on Python 2:
python setup.py sdist
WindowsError: [Error -2146893795] Provider DLL failed to initialize correctly
and the equivalent error on Python 3:
Fatal Python error: Failed to initialize Windows random API (CryptoGen)
This is caused by executing the Python subprocess with an empty(ish) environment (commit 396fda8). See http://bugs.python.org/issue20614, https://code.djangoproject.com/ticket/24160 for details.
My Jenkins caught this.
The text was updated successfully, but these errors were encountered:
The fix is to always copy %SYSTEMROOT%.
I see the Django project also copies %PATH%, citing http://bugs.python.org/issue8557.
I think I'd better copy the whole os.environ, overriding just PYTHONPATH.
Sorry, something went wrong.
90b8961
No branches or pull requests
When check-manifest 0.26 tries to run
python setup.py sdist
in a subprocess, it gets this error on Python 2:and the equivalent error on Python 3:
This is caused by executing the Python subprocess with an empty(ish) environment (commit 396fda8). See http://bugs.python.org/issue20614, https://code.djangoproject.com/ticket/24160 for details.
My Jenkins caught this.
The text was updated successfully, but these errors were encountered: