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

[36/50] [abbrv] beam git commit: Add README to python tarball.

Add README to python tarball.

And, delete test created files, to avoid them being included in the tarball.


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

Branch: refs/heads/gearpump-runner
Commit: ec6da893bf36e7780728d0c08d47e1e4824a66c7
Parents: 9299e26
Author: Ahmet Altay <al...@google.com>
Authored: Fri Mar 10 13:42:17 2017 -0800
Committer: Ahmet Altay <al...@google.com>
Committed: Fri Mar 10 14:22:37 2017 -0800

----------------------------------------------------------------------
 sdks/python/MANIFEST.in | 2 ++
 sdks/python/tox.ini     | 2 ++
 2 files changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam/blob/ec6da893/sdks/python/MANIFEST.in
----------------------------------------------------------------------
diff --git a/sdks/python/MANIFEST.in b/sdks/python/MANIFEST.in
index baa2fda..57f684e 100644
--- a/sdks/python/MANIFEST.in
+++ b/sdks/python/MANIFEST.in
@@ -17,3 +17,5 @@
 
 # This file is used from Python to sync versions
 include pom.xml
+
+include README.md

http://git-wip-us.apache.org/repos/asf/beam/blob/ec6da893/sdks/python/tox.ini
----------------------------------------------------------------------
diff --git a/sdks/python/tox.ini b/sdks/python/tox.ini
index 8d8acfa..807fe3f 100644
--- a/sdks/python/tox.ini
+++ b/sdks/python/tox.ini
@@ -54,6 +54,8 @@ commands =
   # Clean up all cython generated files.
   find apache_beam -type f -name '*.c' -delete
   find apache_beam -type f -name '*.so' -delete
+  find target/build -type f -name '*.c' -delete
+  find target/build -type f -name '*.so' -delete
 passenv = TRAVIS*
 
 [testenv:py27gcp]