Remember to update setup.py (install_requires) when changing this list
Note: In requirements.in leave an extra line below the last package, pip-compile sometimes skips the last package if there is not a new line after the last package.
Note: Steps to update local VE packages before running pip-compile on this file
- run:
pip freeze > tmp_req.txt
- change all '==' in tmp_req.txt to '>='. Check for django package max version and set it
- run:
pip install -r tmp_req.txt --upgrade
- run:
pip-compile -r -U -o requirements.txt requirements.in
!!! This may cause App breakages, test well before sending to production !!!