Merged
Conversation
86c4db7 to
154cdd1
Compare
154cdd1 to
993eaac
Compare
This was referenced Aug 2, 2019
2 tasks
This was referenced Oct 30, 2019
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
addandinitcommands in the following ways.Easier addition of
gitandpathdependenciesIt's now easier to add
gitandpathdependencies, and they can now be added at the same time as other packages:It also removes the
--gitand--pathoptions since they are no longer needed.Since the logic is shared,
initnow supports addinggitandpathdependencies 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
latestconstraint: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