You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 22, 2024. It is now read-only.
pip-compile will let us pin all the dependencies for a deterministic build.
Move requirements.txt to requirements.in and use pip-compile to generate new requirements.txt.
Move requirements-dev.txt to requirements-dev.in and use pip-compile to generate new requirements-dev.txt.
start with a clean environment, e.g., api-env-prod so that "extra" libraries are not included in the committed requirements.txt and requirements-dev.txt
updated README.md with new workflow
update config.yml to include correct pip install -r <dependency file> (e.g., remove pip install -r requirements-ci.txt
The text was updated successfully, but these errors were encountered:
Summary
pip-compile
will let us pin all the dependencies for a deterministic build.requirements.txt
torequirements.in
and usepip-compile
to generate newrequirements.txt
.requirements-dev.txt
torequirements-dev.in
and usepip-compile
to generate newrequirements-dev.txt
.api-env-prod
so that "extra" libraries are not included in the committedrequirements.txt
andrequirements-dev.txt
README.md
with new workflowconfig.yml
to include correctpip install -r <dependency file>
(e.g., removepip install -r requirements-ci.txt
The text was updated successfully, but these errors were encountered: