pitrou commented on code in PR #43325: URL: https://github.com/apache/arrow/pull/43325#discussion_r1686559095
########## python/pyproject.toml: ########## @@ -73,7 +73,9 @@ zip-safe=false include-package-data=true [tool.setuptools.packages.find] -where = ["."] +include = ["pyarrow"] +exclude = ["pyarrow/tests", "pyarrow."] Review Comment: We don't care about removing the tests, they are comparatively small and can serve to test PyArrow on a third-party machine. ```console $ du -hs venv-3.10/lib/python3.10/site-packages/pyarrow 187M venv-3.10/lib/python3.10/site-packages/pyarrow $ du -hs venv-3.10/lib/python3.10/site-packages/pyarrow/tests/ 4,0M venv-3.10/lib/python3.10/site-packages/pyarrow/tests/ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
