From 003e26495c6c8f0064ab82b255f0dd966270ab88 Mon Sep 17 00:00:00 2001 From: Gabriel Montes Date: Thu, 26 Dec 2024 12:06:14 -0300 Subject: [PATCH 1/2] Add code owners --- .github/CODEOWNERS | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index e670c1e7..318a1d64 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,5 +1 @@ -# These owners will be the default owners for everything in -# the repo. Unless a later match takes precedence, -* @safe-global/safe-config-service-maintainers - -/src/safe_apps @safe-global/safe-config-service-maintainers +* @gabmontes \ No newline at end of file From 3c27aeac835b8aa8a36fe1d5a6153ef04532326a Mon Sep 17 00:00:00 2001 From: Aaron Cook Date: Tue, 17 Sep 2024 17:44:06 +0200 Subject: [PATCH 2/2] Pin web3 to 6.20.2 (#1231) Pins the web3 package in accordance with the requirements of safe-eth-py. --- requirements.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/requirements.txt b/requirements.txt index d5d8189c..644dc2d5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -11,3 +11,9 @@ gunicorn==22.0.0 Pillow==10.3.0 psycopg2-binary==2.9.9 requests==2.32.3 + +# Without pin, safe-eth-py 5.8.0 installs >= 7 which breaks django-check job +# > ImportError: cannot import name 'geth_poa_middleware' from 'web3.middleware' +# TODO: Remove when safe-eth-py updates web3 to >= 7 +# https://github.com/safe-global/safe-eth-py/pull/1315 +web3==6.20.2 \ No newline at end of file