Replies: 2 comments 12 replies
-
|
yes (how else would it know what to put in the lock file?) |
Beta Was this translation helpful? Give feedback.
-
|
I think your understanding of |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a group which is called
sshso when installing my project within aDockerfileI can use--without sshcommand and avoid installing the group of dependency that requires an SSH key.Even though within my
DockerfileI use the command--withoutin order to avoid that specific group, the dependency solver still tries to solve those dependency and fails because of no permissions.Is it the normal poetry behavior that even solves the dependency conflicts of those avoided groups?
Here is an example of the code:
RUN poetry config virtualenvs.create true \ && poetry config virtualenvs.in-project true \ && poetry install --without ssh --sync \ && poetry lockThis is an example of the
pyproject.tomlthat I try to installPoetry version:
poetry=1.8.3Beta Was this translation helpful? Give feedback.
All reactions