ddelange commented on issue #40088:
URL: https://github.com/apache/arrow/issues/40088#issuecomment-3536221923
Confirming this is fixed by pyarrow 22.0 🎉
```console
$ python -c 'from packaging.markers import default_environment;
print(default_environment())'
{'implementation_name': 'cpython', 'implementation_version': '3.12.8',
'os_name': 'posix', 'platform_machine': 'arm64', 'platform_release': '24.6.0',
'platform_system': 'Darwin', 'platform_version': 'Darwin Kernel Version 24.6.0:
Mon Jul 14 11:30:40 PDT 2025; root:xnu-11417.140.69~1/RELEASE_ARM64_T6041',
'python_full_version': '3.12.8', 'platform_python_implementation': 'CPython',
'python_version': '3.12', 'sys_platform': 'darwin'}
$ pip install -q tensorflow~=2.20.0 pyarrow~=21.0 && python -c 'import
tensorflow; import pyarrow; print("happy")'
libc++abi: terminating due to uncaught exception of type
std::__1::system_error: mutex lock failed: Invalid argument
Abort trap: 6
$ pip install -q tensorflow~=2.20.0 pyarrow~=22.0 && python -c 'import
tensorflow; import pyarrow; print("happy")'
happy
```
--
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]