From ae870d175f5dc9ad9e427bcf8a66eabc49f8b90c Mon Sep 17 00:00:00 2001 From: nolash Date: Wed, 30 Jun 2021 17:58:52 +0200 Subject: [PATCH] for real update requirements --- apps/cic-cache/requirements.txt | 2 +- apps/cic-eth/requirements.txt | 2 +- apps/cic-notify/requirements.txt | 2 +- apps/cic-ussd/requirements.txt | 2 +- apps/data-seeding/requirements.txt | 2 +- apps/util/requirements/update_base.sh | 5 ++++- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/cic-cache/requirements.txt b/apps/cic-cache/requirements.txt index 2bc3a75a..00030b74 100644 --- a/apps/cic-cache/requirements.txt +++ b/apps/cic-cache/requirements.txt @@ -1,4 +1,4 @@ -cic-base==0.1.3a3+build.4aa03607 +cic-base==0.1.3a3+build.984b5cff alembic==1.4.2 confini~=0.3.6rc3 uwsgi==2.0.19.1 diff --git a/apps/cic-eth/requirements.txt b/apps/cic-eth/requirements.txt index 207045ed..60d27d13 100644 --- a/apps/cic-eth/requirements.txt +++ b/apps/cic-eth/requirements.txt @@ -1,4 +1,4 @@ -cic-base==0.1.3a3+build.4aa03607 +cic-base==0.1.3a3+build.984b5cff celery==4.4.7 crypto-dev-signer~=0.4.14b6 confini~=0.3.6rc3 diff --git a/apps/cic-notify/requirements.txt b/apps/cic-notify/requirements.txt index 67db2dfb..17b36f50 100644 --- a/apps/cic-notify/requirements.txt +++ b/apps/cic-notify/requirements.txt @@ -1 +1 @@ -cic_base[full_graph]==0.1.3a3+build.4aa03607 +cic_base[full_graph]==0.1.3a3+build.984b5cff diff --git a/apps/cic-ussd/requirements.txt b/apps/cic-ussd/requirements.txt index f527c4ef..cec40083 100644 --- a/apps/cic-ussd/requirements.txt +++ b/apps/cic-ussd/requirements.txt @@ -1,4 +1,4 @@ -cic_base[full_graph]==0.1.3a3+build.4aa03607 +cic_base[full_graph]==0.1.3a3+build.984b5cff cic-eth~=0.11.1a2 cic-notify~=0.4.0a6 cic-types~=0.1.0a11 diff --git a/apps/data-seeding/requirements.txt b/apps/data-seeding/requirements.txt index c178b15f..0a1d5809 100644 --- a/apps/data-seeding/requirements.txt +++ b/apps/data-seeding/requirements.txt @@ -1,4 +1,4 @@ -cic_base[full_graph]==0.1.3a3+build.4aa03607 +cic_base[full_graph]==0.1.3a3+build.984b5cff sarafu-faucet==0.0.4a1 cic-eth==0.11.1a1 cic-types==0.1.0a13 diff --git a/apps/util/requirements/update_base.sh b/apps/util/requirements/update_base.sh index 938867be..49eb3ee7 100644 --- a/apps/util/requirements/update_base.sh +++ b/apps/util/requirements/update_base.sh @@ -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