pip 24.2 (or setuptools 72 that it brings in?) has removed a long deprecated feature that RandomWords is relying on at https://github.com/tomislater/RandomWords/blob/master/setup.py#L6.
When installing under docker (x86-64) I see ModuleNotFoundError: No module named 'setuptools.command.test' for version 0.4.0.
For now we are using one of the workarounds discussed at pypa/setuptools#4519 (PIP_CONSTRAINT env var pointed to a file containing setuptools<72.0). We have other dependencies that we need to do this for anyway so it's not blocking us but thought I'd give a heads up here.
pip 24.2 (or setuptools 72 that it brings in?) has removed a long deprecated feature that RandomWords is relying on at https://github.com/tomislater/RandomWords/blob/master/setup.py#L6.
When installing under docker (x86-64) I see
ModuleNotFoundError: No module named 'setuptools.command.test'for version0.4.0.For now we are using one of the workarounds discussed at pypa/setuptools#4519 (
PIP_CONSTRAINTenv var pointed to a file containingsetuptools<72.0). We have other dependencies that we need to do this for anyway so it's not blocking us but thought I'd give a heads up here.