Replies: 2 comments 8 replies
-
How do you update the component? Do you edit |
Beta Was this translation helpful? Give feedback.
1 reply
-
@till can provide the Here are a few pointers since you mentioned this is within a container.
|
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I am using poetry (
v1.7.0
) to maintain tool versions (ansible and openstack client) in a project.The project is a workspace and setup inside a container (to ensure all versions stay as they should). Aside from installing the tools, I don't use python — in a nutshell
poetry install
and thenpoetry run ansible-playbook
etc..My install command:
My
pyproject.toml
:The log of the install looks similar to this:
Now, when I update one of the components in my project and run
poetry install
, it often takes a long time (at least 2 minutes, sometimes 5 to 10). I've read a lot of the issues regarding performance and figured I'd ask here before I create yet another one.Long story short — is there documentation to describe best practices as to how to add dependencies?
poetry config installer.max-workers 100
), but it doesn't seem like that is picked up.Anyway, appreciate what this project is doing. At least for myself who's not a Python developer, this seemed more in line with the experience in other languages. So kudos for that.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions