I need to install a version of poetry that has the poetry add --group
support (currently version 1.2.0a2) but I need it to have this change in the poetry-core but I can't seem to change the poetry-core that is used by poetry even if I perform a pip install of poetry core on a specific commit probably because this is a PEP517 build backend module.
I need to be able to recreate this "poetry hybrid build" in a docker container so I can build my project so I'm trying to find a nice way of doing it.
I've tried this but the poetry-core fix isn't there as expected.
pip install git+https://github.com/python-poetry/poetry-core.git@af08f1ce720da467c9bf3d43eed3d9ebaf4ad7fb
curl -sSL https://install.python-poetry.org | python3 - --preview
Does anyone know a way of doing this?