You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should use a BytesGenerator on Python 3 and a Generator on Python 2. The open should occur with 'wb' on Python 3 and optionally 'wbN' on Python 2.
The text was updated successfully, but these errors were encountered:
Building universal wheels should produce identical wheels on all platforms We need to use LF only line endings on Windows.
In bdist_wheel.py
Proposed Fix
This should use a
BytesGenerator
on Python 3 and aGenerator
on Python 2. Theopen
should occur with'wb'
on Python 3 and optionally'wbN'
on Python 2.The text was updated successfully, but these errors were encountered: