Noticed that pip-compile doesn't preserve the behavior of --no-binary/--only-binary so our requirements.txt file actually couldn't be installed with pip install.
I opened an issue and fix with pip-tools that fixes the issue and manually amended our requirements.txt file. Also moved the format requirements to requirements.in so we can document the situation for each dependency that requires an sdist.
Noticed that pip-compile doesn't preserve the behavior of
--no-binary
/--only-binary
so ourrequirements.txt
file actually couldn't be installed withpip install
.I opened an issue and fix with pip-tools that fixes the issue and manually amended our
requirements.txt
file. Also moved the format requirements torequirements.in
so we can document the situation for each dependency that requires an sdist.