You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2017/05/08 21:03:12 UTC

[4/5] beam git commit: Only cythonize files within apache_beam

Only cythonize files within apache_beam


Project: http://git-wip-us.apache.org/repos/asf/beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/c4f234c8
Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/c4f234c8
Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/c4f234c8

Branch: refs/heads/release-2.0.0
Commit: c4f234c8cfb349d877eeb5c62eec7d80e844be07
Parents: 7224111
Author: Sourabh Bajaj <so...@google.com>
Authored: Sun May 7 18:08:49 2017 -0700
Committer: Sourabh Bajaj <so...@google.com>
Committed: Mon May 8 13:58:06 2017 -0700

----------------------------------------------------------------------
 sdks/python/setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/c4f234c8/sdks/python/setup.py
----------------------------------------------------------------------
diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index f527362..681abbf 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -124,7 +124,7 @@ setuptools.setup(
     package_data={'apache_beam': [
         '*/*.pyx', '*/*/*.pyx', '*/*.pxd', '*/*/*.pxd', 'tests/data/*']},
     ext_modules=cythonize([
-        '**/*.pyx',
+        'apache_beam/**/*.pyx',
         'apache_beam/coders/coder_impl.py',
         'apache_beam/metrics/execution.py',
         'apache_beam/runners/common.py',