Issue
Docs are not too verbose on what @ operator means. E.g. three commands bellow seem to do the same thing:
poetry add 'bar@1.2.3'
poetry add 'bar=1.2.3'
poetry add 'bar==1.2.3'
Additionally these few are accepted as well:
poetry add 'bar@=1.2.3'
poetry add 'bar@==1.2.3'
poetry add 'bar===1.2.3'
poetry add 'bar====1.2.3'
Issue
Docs are not too verbose on what
@operator means. E.g. three commands bellow seem to do the same thing:Additionally these few are accepted as well: