forked from grpc/grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mitigate Python build directory naming conflict
On Mac and Windows, the default directory name conflicts with the BUILD file we have.
- Loading branch information
1 parent
822602c
commit 1a54e5c
Showing
2 changed files
with
4 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ libs | |
objs | ||
|
||
# Python items | ||
python_build/ | ||
.coverage* | ||
.eggs | ||
.tox | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
[coverage:run] | ||
plugins = Cython.Coverage | ||
|
||
[build] | ||
build_base=python_build | ||
|
||
[build_ext] | ||
inplace=1 | ||
|
||
|