-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the effect of at
operator?
#5953
Comments
I tried some other patterns.
So
Is there any case that does not follow the rules above? |
Hello @a-takahashi223, I think you overlook the fin swimmer |
so |
The |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option).OS version and name: CentOS Stream
Poetry version: 1.1.13
Link of a Gist with the contents of your pyproject.toml file: None
Issue
The documentation says
And it shows the example that
poetry add django@^4.0.0
will add the lineDjango = "^4.0.0"
topyproject.toml
. But what version is installed (written topoetry.lock
) is not shown.As "
@
operator is understood similarly to the == syntax", django 4.0.0 is expected to be installed. But no.This result seems to be the same as
poetry add django^4.0.0
. What is the difference? What is the effect of@
operator?#3142 and #5136 is the similar questions, and #5822 says it solved them, but I can't understand the effect of
@
operator by reading the documentation.The text was updated successfully, but these errors were encountered: