Replace merge with update in requirements script, upgrade test reqs in cic-cache

This commit is contained in:
nolash
2021-06-30 15:44:33 +02:00
parent 2d1316f1b8
commit 5e11804e7f
4 changed files with 5 additions and 4 deletions

View File

@@ -14,6 +14,8 @@ repos=(../../cic-cache ../../cic-eth ../../cic-ussd ../../data-seeding ../../cic
for r in ${repos[@]}; do
f="$r/requirements.txt"
>&2 echo updating $f
pyreq-merge $f base_requirement.txt > $t
f="$r/test_requirements.txt"
>&2 echo updating $f
pyreq-update $f base_requirement.txt > $t
cp $t $f
done