rpeloff-id commented on issue #24458:
URL: https://github.com/apache/beam/issues/24458#issuecomment-1343034865
The only solution I have found is to pin the `multiprocess` dependency:
```python
setuptools.setup(
...,
install_requires=["apache-beam", "multiprocess==0.70.9", ...],
)
```
But this would mean that the package is highly constrained with respect to
`multiprocess`. It also means that for Python >= 3.9 we require a two step
installation, see
https://github.com/uqfoundation/multiprocess/issues/125#issue-1471452077:
```bash
pip install -e .
pip install --no-deps multiprocess>=0.70.11
```
--
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]