requirements: Include packages that pip-tools considers unsafe.

It’s unclear why pip-tools considers these packages unsafe, and
excluding them from being pinned has resulted in nondeterministic
output that makes our test suite unhappy.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg
2019-08-25 16:04:18 -07:00
committed by Tim Abbott
parent 8b443a25b8
commit f1b91e577e
4 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ compile_requirements () {
output="$2"
python_version="$3"
pip-compile --quiet --no-header --output-file "$output" "$source"
pip-compile --quiet --allow-unsafe --no-header --output-file "$output" "$source"
if [ "$python_version" != "py2" ]; then
# Remove an unnecessary future requirement declared by commonmark,