Improve the add and init commands #1221
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull Request Check List
This PR improves the
add
andinit
commands in the following ways.Easier addition of
git
andpath
dependenciesIt's now easier to add
git
andpath
dependencies, and they can now be added at the same time as other packages:It also removes the
--git
and--path
options since they are no longer needed.Since the logic is shared,
init
now supports addinggit
andpath
dependencies and you get a new message before adding your first package:Bump the constraint of an existing depency
You can now update the constraint of an already present dependency (which would raise an error previously) by specifying a specific constraint or by using the special
latest
constraint:Better handling of prereleases
Now, if a package only has prereleases, the highest one will be selected. Before this change, the command would return a message saying the package didn't have any version matching the constraint.
$ poetry add black --dev Using version ^19.3b0 for black