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
Currently, the way script handles versioning is simply by passing the version over to pip as poetry=={version}. This is fine, however it would be nice if we could set the version to something like ^1.3.0, or similar.
This probably shouldn't be too hard to handle, as there's already a regex checking for semver compatibility, and these are just some set of additional characters that could optionally be there. If this specifier isn't there, the script can just use the current approach of ==.
The text was updated successfully, but these errors were encountered:
Currently, the way script handles versioning is simply by passing the version over to pip as
poetry=={version}
. This is fine, however it would be nice if we could set the version to something like^1.3.0
, or similar.This probably shouldn't be too hard to handle, as there's already a regex checking for semver compatibility, and these are just some set of additional characters that could optionally be there. If this specifier isn't there, the script can just use the current approach of
==
.The text was updated successfully, but these errors were encountered: