pmeier opened a new issue, #38167:
URL: https://github.com/apache/arrow/issues/38167

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   Not really a bug, but that was the best fitting category. 
   
   
   ```python
   # for Python < 3.10 use importlib_metadata after installing it
   from importlib.metadata import packages_distributions
   
   module_names = [
       module_name
       for module_name, distribution_names in packages_distributions().items()
       if "pyarrow" in distribution_names
   ]
   
   print(module_names)
   ```
   
   ```
   ['__dummy__', 'pyarrow']
   ```
   
   As far as I see, this is only used to trigger parts of the build
   
   
https://github.com/apache/arrow/blob/fae16c850a206d97ff23df73ba54bb8991fb35bc/python/setup.py#L483-L484
   
   
https://github.com/apache/arrow/blob/fae16c850a206d97ff23df73ba54bb8991fb35bc/python/setup.py#L82-L86
   
   Meaning, this likely shouldn't leak outside the actual build.
   
   ### Component(s)
   
   Python


-- 
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]

Reply via email to