Randy Döring
Randy Döring
`HookMissing('build_editable')` probably means that old setuptools does not support [PEP 660](https://peps.python.org/pep-0660/). Not sure what to do about that. Apart from that the proposed command has to be improved: - To...
I don't recommend setting `experimental.new-installer` to `false`. (The name is misleading.) It should be sufficient to set `installer.modern-installation` to `false`. A possible fix is mentioned in https://github.com/python-poetry/poetry/issues/755#issuecomment-1449275865. A PR with...
LGTM, PR welcome. 😄
@johnthagen You have convinced me. Any change (or even bugfix) is a breaking change for someone out there. I can't imagine non-existent groups being intentionally used in a meaningful way...
If I remember correctly: If you don't run `poetry install` or run `poetry install --no-root`, the root project as well as its scripts are not installed. Then, `sys.argv[0]` will still...
> while you're developing you'll have the project installed in editable mode I'm saying that with the PR `sys.argv[0]` will be absolute if the project is installed (even in _editable_...
At the moment, I don't see a use case why it should be necessary to run non installed entry points. However, before we forbid it we should deprecate it and...
IMO the "writing lock file" message should be printed when the lock file is written. If it is written before installation it should be printed before. If it is written...
This is because the pool with the mock repository is not generated via `create_pool()` from the config, but created directly and passed to the installer. Before #7560 this pool wasn't...
I assume you "just" have to add two json files for `wheel` in https://github.com/python-poetry/poetry/tree/master/tests/repositories/fixtures/pypi.org/json See https://github.com/python-poetry/poetry/blob/master/tests/repositories/fixtures/pypi.org/json/setuptools.json and https://github.com/python-poetry/poetry/blob/master/tests/repositories/fixtures/pypi.org/json/setuptools/39.2.0.json for example. That's where the ancient setuptools 39.2.0 in https://github.com/python-poetry/poetry/pull/7498#issuecomment-1450943161 comes from.