for real update requirements

This commit is contained in:
nolash
2021-06-30 17:58:52 +02:00
parent 2b43f8a47d
commit ae870d175f
6 changed files with 9 additions and 6 deletions

View File

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