Arun Babu Neelicattu
Arun Babu Neelicattu
This looks like an issue with pip misbehaving under `poetry shell`. Maybe try `poetry run pip list`? Alternatively try the following. Be sure to remove existing virtualenv. ```sh poetry config...
@hugobuddel unfortunately there not much Poetry can do in your example. ``` $ poetry show scipy name : scipy version : 1.15.1 description : Fundamental algorithms for scientific computing in...
I suspect this was resolved by #9748. Closing for now. If you need help debugging or trouble shooting, you can try the community Discord server.
@georgettica can you try without this line? ``` RUN poetry lock --no-update ``` Locking requires a metadata build for path dependencies, and this in turn requires the source of the...
Oops, yes. I am guessing you want some form of layer caching here. You can sort of achieve that, the issue you are hitting is that for installing an editable...
Anything you manage and distribute independently should have its own `pyproject.toml` file. If you do not care about distributing them or developing them independently, I would imaging you can just...
@dromer can you maybe provide some more clarity on how the attempt to use poetry within tox is failing? Does it fail to authenticate? Does it succeed but the subsequent...
If I recall correctly, the output is intentionally similar. I don't think there is a need for this change. Happy to hear from others before deciding. If we do proceed,...
The problem seems to be missing cert in your system bundle and when you set the env var the default bundles being disabled. Does [setting a custom cert](https://python-poetry.org/docs/repositories/#using-a-private-repository) help here?...
I suspect @radoering is correct that we will end up with some unexpected updates if we don't pin. This sounds similar to "distro managed" packages conceptually if I am groking...