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
build omits the "encoding" parameter when reading pyproject.toml, resulting in a UnicodeDecodeError when the file contains unicode characters unsupported by the system encoding.
build
omits the "encoding" parameter when reading pyproject.toml, resulting in aUnicodeDecodeError
when the file contains unicode characters unsupported by the system encoding.The problem code is at:
build/src/build/__init__.py
Lines 143 to 144 in ca34512
The traceback is:
The TOML specification requires files to be encoded in UTF-8, and therefore the fix is as simple as:
See tox-dev/tox#1908 for the same issue in
tox
The text was updated successfully, but these errors were encountered: