vintasoftware/django-zombodb

Add sed command on Makefile to match "# via django" lines

Closed this issue · 1 comments

Description

On the dependency management part of the Makefile, remember to remove dependencies added to requirements.txt because of Django so you don't pin them as well.

sed '/django==/d' requirements.txt > requirements.tmp; mv requirements.tmp requirements.txt
sed '/# via django$$/d' requirements.txt > requirements.tmp; mv requirements.tmp requirements.txt
fjsj commented

Fixed by 525e2f2