Mitigate Python build directory naming conflict

On Mac and Windows, the default directory name conflicts with the BUILD
file we have.
pull/4957/head
Masood Malekghassemi 9 years ago
parent 822602cff0
commit 1a54e5cdd5
  1. 1
      .gitignore
  2. 3
      setup.cfg

1
.gitignore vendored

@ -5,6 +5,7 @@ libs
objs
# Python items
python_build/
.coverage*
.eggs
.tox

@ -3,6 +3,9 @@
[coverage:run]
plugins = Cython.Coverage
[build]
build_base=python_build
[build_ext]
inplace=1

Loading…
Cancel
Save