forked from jazzband/pip-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add "--allow-conflicts" option (proof-of-concept), jazzband#561
By default we get an error if there is version conflict, e.g.: "Could not find a version that matches requests==2.18.4,==2.7.0" With this option the constraints defined in the spec file (requirements.in) take precedence, so the installation can continue, and a warning is printed, e.g.: "Conflicting versions found: requests==2.18.4,==2.7.0, using our constraints: requests==2.18.4" This makes behavior similar to ``pip`` and is a workaround when libraries are too strict in specifying their dependencies.
- Loading branch information
Showing
2 changed files
with
36 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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