From af6d2ac1426771adee82eb426bda53c4780289cd Mon Sep 17 00:00:00 2001 From: Nick Santana Date: Wed, 23 Oct 2024 14:03:08 -0700 Subject: [PATCH 1/3] Uupdate grpcio for fog-local-network --- tools/fog-local-network/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/fog-local-network/requirements.txt b/tools/fog-local-network/requirements.txt index b1a9fafcbe..37563a212a 100644 --- a/tools/fog-local-network/requirements.txt +++ b/tools/fog-local-network/requirements.txt @@ -1,2 +1,2 @@ -grpcio==1.60.0 -grpcio-tools==1.60.0 +grpcio==1.67.0 +grpcio-tools==1.67.0 From dc7426ad214cef4cc3a18754a5ae2be2e018ef8f Mon Sep 17 00:00:00 2001 From: Nick Santana Date: Wed, 23 Oct 2024 14:21:05 -0700 Subject: [PATCH 2/3] Use python in container --- .github/workflows/ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a88f089538..02c7926d14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -308,10 +308,6 @@ jobs: steps: - name: Check out code uses: mobilecoinofficial/gh-actions/checkout@v0 - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: '3' - name: Set up environment working-directory: tools/fog-local-network shell: bash From d7a019ca260ec5d0ec21cf6f6d906e7a5ffad07b Mon Sep 17 00:00:00 2001 From: Nick Santana Date: Wed, 23 Oct 2024 14:27:03 -0700 Subject: [PATCH 3/3] needs more cow bell Add back setup python but pin it to 3.13 --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02c7926d14..764fd706c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -308,6 +308,10 @@ jobs: steps: - name: Check out code uses: mobilecoinofficial/gh-actions/checkout@v0 + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: '3.13' - name: Set up environment working-directory: tools/fog-local-network shell: bash