From 4f56632acd3bcb32a3b0981c26cc02f2b9bdc4ae Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Thu, 28 Sep 2023 23:44:19 +0200 Subject: [PATCH] Update pip requirements to pass stage2 and stage3 in all modules Change-Id: I8089c3b333a16400ff99b0564300dd97dd88ac5e Signed-off-by: garciadeblas --- requirements-dev.txt | 12 ++++++------ requirements-test.txt | 4 ++-- requirements.txt | 38 ++++++++++++++++++++++++-------------- tox.ini | 4 ++-- 4 files changed, 34 insertions(+), 24 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 9f8bd6d..cc6daf0 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -14,15 +14,15 @@ # See the License for the specific language governing permissions and # limitations under the License. ####################################################################################### -aiokafka==0.8.0 +aiokafka==0.8.1 # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master -async-timeout==4.0.2 +async-timeout==4.0.3 # via # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master # aiokafka dataclasses==0.6 # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master -dnspython==2.3.0 +dnspython==2.4.2 # via # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master # pymongo @@ -30,7 +30,7 @@ kafka-python==2.0.2 # via # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master # aiokafka -motor==3.1.2 +motor==3.3.1 # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master osm-common @ git+https://osm.etsi.org/gerrit/osm/common.git@master # via -r requirements-dev.in @@ -38,9 +38,9 @@ packaging==23.1 # via # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master # aiokafka -pycryptodome==3.17 +pycryptodome==3.19.0 # via -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master -pymongo==4.3.3 +pymongo==4.5.0 # via # -r https://osm.etsi.org/gitweb/?p=osm/common.git;a=blob_plain;f=requirements.txt;hb=master # motor diff --git a/requirements-test.txt b/requirements-test.txt index 295394e..5392e8e 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -14,9 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. ####################################################################################### -coverage==7.2.5 +coverage==7.3.1 # via -r requirements-test.in -mock==5.0.2 +mock==5.1.0 # via -r requirements-test.in nose2==0.13.0 # via -r requirements-test.in diff --git a/requirements.txt b/requirements.txt index 1cc0804..4323fdf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,39 +14,49 @@ # See the License for the specific language governing permissions and # limitations under the License. ####################################################################################### -aiokafka==0.8.0 +aiokafka==0.8.1 # via -r requirements.in -async-timeout==4.0.2 +async-timeout==4.0.3 # via aiokafka attrs==23.1.0 - # via jsonschema -certifi==2023.5.7 + # via + # jsonschema + # referencing +certifi==2023.7.22 # via requests -charset-normalizer==3.1.0 +charset-normalizer==3.2.0 # via requests -click==8.1.3 +click==8.1.7 # via peewee-migrate idna==3.4 # via requests -jsonschema==4.17.3 +jsonschema==4.19.1 # via -r requirements.in +jsonschema-specifications==2023.7.1 + # via jsonschema kafka-python==2.0.2 # via aiokafka packaging==23.1 # via aiokafka -peewee==3.16.2 +peewee==3.16.3 # via # -r requirements.in # peewee-migrate -peewee-migrate==1.7.1 +peewee-migrate==1.12.2 # via -r requirements.in -pymysql==1.0.3 +pymysql==1.1.0 # via -r requirements.in -pyrsistent==0.19.3 - # via jsonschema pyyaml==6.0.1 # via -r requirements.in -requests==2.30.0 +referencing==0.30.2 + # via + # jsonschema + # jsonschema-specifications +requests==2.31.0 # via -r requirements.in -urllib3==2.0.2 +rpds-py==0.10.3 + # via + # jsonschema + # referencing +urllib3==2.0.5 # via requests diff --git a/tox.ini b/tox.ini index caddd6d..33d241e 100644 --- a/tox.ini +++ b/tox.ini @@ -78,7 +78,7 @@ commands = ####################################################################################### [testenv:pip-compile] -deps = pip-tools==6.6.2 +deps = pip-tools==6.13.0 skip_install = true allowlist_externals = bash [ @@ -86,7 +86,7 @@ commands = - bash -c "for file in requirements*.in ; do \ UNSAFE="" ; \ if [[ $file =~ 'dist' ]] ; then UNSAFE='--allow-unsafe' ; fi ; \ - pip-compile -rU --no-header $UNSAFE $file ;\ + pip-compile --resolver=backtracking -rU --no-header $UNSAFE $file ;\ out=`echo $file | sed 's/.in/.txt/'` ; \ sed -i -e '1 e head -16 tox.ini' $out ;\ done" -- 2.25.1