This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 27f5a42  ARROW-2301: [Python] Build source distribution inside the 
manylinux1 docker
27f5a42 is described below

commit 27f5a42b14332ed73d31d6eeda817c8638598477
Author: Korn, Uwe <[email protected]>
AuthorDate: Mon Mar 26 18:14:47 2018 -0400

    ARROW-2301: [Python] Build source distribution inside the manylinux1 docker
    
    @kou Once this is merged, I will upload the source distribution for 0.9.0.
    
    Author: Korn, Uwe <[email protected]>
    
    Closes #1795 from xhochy/ARROW-2301 and squashes the following commits:
    
    bd8287ed <Korn, Uwe> ARROW-2301:  Build source distribution inside the 
manylinux1 docker
---
 dev/release/RELEASE_MANAGEMENT.md | 3 ++-
 python/manylinux1/build_arrow.sh  | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev/release/RELEASE_MANAGEMENT.md 
b/dev/release/RELEASE_MANAGEMENT.md
index 0069a2a..06340ab 100644
--- a/dev/release/RELEASE_MANAGEMENT.md
+++ b/dev/release/RELEASE_MANAGEMENT.md
@@ -154,7 +154,8 @@ The pip binary packages (called "wheels") are generated 
from the
 * Push arrow-dist updates to **both** apache/arrow-dist and your fork of
   arrow-dist.
 * Wait for builds to complete
-* Download all wheel files from the new BinTray package version ([example][4])
+* Download all wheel and tar.gz files from the new BinTray package version
+  ([example][4])
 
 Now, you can finally upload the wheels to PyPI using the `twine` CLI tool. You
 must be permissioned on PyPI to upload here; ask Wes McKinney or Uwe Korn if
diff --git a/python/manylinux1/build_arrow.sh b/python/manylinux1/build_arrow.sh
index 5df55a6..6697733 100755
--- a/python/manylinux1/build_arrow.sh
+++ b/python/manylinux1/build_arrow.sh
@@ -70,6 +70,7 @@ for PYTHON_TUPLE in ${PYTHON_VERSIONS}; do
     echo "=== (${PYTHON}) Building wheel ==="
     PATH="$PATH:${CPYTHON_PATH}/bin" $PYTHON_INTERPRETER setup.py build_ext 
--inplace --with-parquet --bundle-arrow-cpp --bundle-boost 
--boost-namespace=arrow_boost
     PATH="$PATH:${CPYTHON_PATH}/bin" $PYTHON_INTERPRETER setup.py bdist_wheel
+    PATH="$PATH:${CPYTHON_PATH}/bin" $PYTHON_INTERPRETER setup.py sdist
 
     echo "=== (${PYTHON}) Test the existence of optional modules ==="
     $PIP install -r requirements.txt
@@ -88,4 +89,5 @@ for PYTHON_TUPLE in ${PYTHON_VERSIONS}; do
     deactivate
 
     mv repaired_wheels/*.whl /io/dist
+    mv dist/*.tar.gz /io/dist
 done

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to