-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(run-task): don't explicitly pass '--require-hashes'
Currently when installing pip dependencies via the `<REPO>_PIP_REQUIREMENTS` environment variable, `run-task` explicitly passes in the `--require-hashes` option. This makes it difficult to test against pre-release versions of Taskgraph since VCS urls do not support hashes (pypa/pip#6469). To work around this, a `PIP_DISABLE_REQUIRE_HASHES` environment variable is being introduced. When set, `run-task` will not pass down `--require-hashes` to the `pip install` command. Allowing consumers to test against URL specifiers.
- Loading branch information
Showing
2 changed files
with
20 additions
and
2 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