Repository: arrow Updated Branches: refs/heads/master 4e134e5b9 -> a367fd437
ARROW-1086: include additional pxd files during package build Since this is purely a packaging change, I believe I would need to change`travis_script_python.sh` in order test it (build a wheel, set up a new conda environment and install the wheel, etc). Not sure if that's worth doing? Happy to take a stab if it is. Author: Jacob Scott <[email protected]> Closes #733 from snakescott/ARROW-1086 and squashes the following commits: 6c3e8598 [Jacob Scott] [ARROW-1086] Add more pxd files to package_data Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/a367fd43 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/a367fd43 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/a367fd43 Branch: refs/heads/master Commit: a367fd437b1fe7797a27be578435abfacf94d052 Parents: 4e134e5 Author: Jacob Scott <[email protected]> Authored: Tue Jun 6 14:18:05 2017 -0400 Committer: Wes McKinney <[email protected]> Committed: Tue Jun 6 14:18:05 2017 -0400 ---------------------------------------------------------------------- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/a367fd43/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index b64e259..817c59f 100644 --- a/python/setup.py +++ b/python/setup.py @@ -349,7 +349,7 @@ setup( name="pyarrow", packages=['pyarrow', 'pyarrow.tests'], zip_safe=False, - package_data={'pyarrow': ['*.pxd', '*.pyx']}, + package_data={'pyarrow': ['*.pxd', '*.pyx', 'includes/*.pxd']}, include_package_data=True, distclass=BinaryDistribution, # Dummy extension to trigger build_ext
