You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As reported in #100, confusion can happen when a version to install is written without any leading character.
For example:
pycors install 3.8.0
will be interpreted as ^3.8.0 by the semver crate. This will in turn attempt to install a version matching >=3.8.0,<4.0.0, which at the current time matches 3.9.0.
While "valid" according to semver, it's probably not what the user expected.
Prepending a = in front of a requested install when no character is present should be considered. The downside of this is that the string provided is not strictly semver anymore.
The text was updated successfully, but these errors were encountered:
As reported in #100, confusion can happen when a version to install is written without any leading character.
For example:
will be interpreted as
^3.8.0
by thesemver
crate. This will in turn attempt to install a version matching>=3.8.0,<4.0.0
, which at the current time matches 3.9.0.While "valid" according to semver, it's probably not what the user expected.
Prepending a
=
in front of a requested install when no character is present should be considered. The downside of this is that the string provided is not strictly semver anymore.The text was updated successfully, but these errors were encountered: