diff options
author | Masood Malekghassemi <atash@google.com> | 2016-07-21 14:20:43 -0700 |
---|---|---|
committer | Masood Malekghassemi <atash@google.com> | 2016-07-22 13:56:36 -0700 |
commit | fd9cc106f3e06722c2f101b40b7ac14f67836c74 (patch) | |
tree | 63f36880d4563f72e72b1f5034ba165a7078a552 /src/python/grpcio/.gitignore | |
parent | 6b3361bc346f3080083c15547698a025adafaa86 (diff) |
Be more intelligent about Cython in grpcio
Before, Cython would *need* to be imported immediately if generated
files did not already exist. Now, missing generated files will trigger a
`setup_requires` inclusion of Cython and defer cythonization until
extension build-time. If cythonization was specified via environment
variable and setup could not find Cython, the extensions are poisoned
instead of blocking non-extension commands from running.
Diffstat (limited to 'src/python/grpcio/.gitignore')
-rw-r--r-- | src/python/grpcio/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/python/grpcio/.gitignore b/src/python/grpcio/.gitignore index 7cd8fab273..3309795948 100644 --- a/src/python/grpcio/.gitignore +++ b/src/python/grpcio/.gitignore @@ -14,3 +14,4 @@ doc/ _grpcio_metadata.py htmlcov/ grpc/_cython/_credentials +poison.c |