-
-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #31002: Specify bdist temp folder for WSL compatibility
On WSL, `bdist_wheel` sometimes encounters strange permission errors (when the source folder is a Windows folder mounted in WSL), see pypa/packaging-problems#258. In the linked issue, a solution is described by changing the permissions for authenticated users, but it didn't work for me. Thus I've implemented the workaround mentioned in https://github.com/pypa/packaging- problems/issues/258#issuecomment-548148041 and specified an explicit bdist directory in the Linux system. URL: https://trac.sagemath.org/31002 Reported by: gh-tobiasdiez Ticket author(s): Tobias Diez, Matthias Koeppe Reviewer(s): Matthias Koeppe, Tobias Diez
- Loading branch information
Showing
6 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
cd src | ||
|
||
sage-python23 setup.py bdist_wheel \ | ||
--use-pkg-config || sdh_die "Error building wheel for python_igraph" | ||
sdh_setup_bdist_wheel --use-pkg-config | ||
|
||
sdh_store_and_pip_install_wheel . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters