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
The requirements.txt file we use may not cover all the dependencies of the app; @jbranigan's VM was missing simplejson.
However, doing a pip freeze shows a lot of packages that we shouldn't be relying on; the python requirements should be checked and any extraneous packages removed. The remaining packages should be explicitly included into requirements.txt via pip freeze.
Here's the current output of pip freeze, for reference:
I just destroyed my vagrant box and reprovisioned, and all seems well. The only place we seem to be using simplejson is to catch JSONDecodeError in parsing scala responses to the feed parser celery task. I'm guessing the other packages pip freeze output are mostly incidental Ubuntu packages, such as ufw.
The
requirements.txt
file we use may not cover all the dependencies of the app; @jbranigan's VM was missingsimplejson
.However, doing a
pip freeze
shows a lot of packages that we shouldn't be relying on; the python requirements should be checked and any extraneous packages removed. The remaining packages should be explicitly included intorequirements.txt
viapip freeze
.Here's the current output of pip freeze, for reference:
The text was updated successfully, but these errors were encountered: