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

Setup: Fix unicode path related installation errors (#5678). #5678

Merged
merged 1 commit into from Mar 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions news/5678.bugfix.rst
@@ -0,0 +1,2 @@
Fix installation issues stemming from unicode characters in
file paths.
10 changes: 10 additions & 0 deletions pyproject.toml
Expand Up @@ -64,3 +64,13 @@
directory = "build"
name = "Bootloader build"
showcontent = true

[build-system]
# Tells pip to install wheel before trying to install PyInstaller
# from an sdist or from Github.
# Installing without wheel uses legacy `python setup.py install`
# which has issues with unicode paths.
requires = [
"wheel",
"setuptools",
]