From 29172794ca44f0b39a38319c52e7a33e54fb68fc Mon Sep 17 00:00:00 2001 From: Josh Bailey Date: Fri, 19 Jul 2024 05:43:32 +0000 Subject: [PATCH 1/3] poetry 1.8.3 --- .github/workflows/ci-test.yml | 2 +- renovate.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 771eeff5..60e9a303 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -19,7 +19,7 @@ jobs: with: virtualenvs-create: false virtualenvs-in-project: false - version: 1.5.1 + version: 1.8.3 - name: Get dependencies run: | sudo apt-get update && sudo apt-get install -y --no-install-recommends \ diff --git a/renovate.json b/renovate.json index 8c055471..0264db65 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "constraints": { - "poetry": "1.8.1" + "poetry": "1.8.3" }, "extends": [ "config:base", From dadc13ee9940113db9772297cd65680e2eef6e0c Mon Sep 17 00:00:00 2001 From: Josh Bailey Date: Fri, 19 Jul 2024 06:21:10 +0000 Subject: [PATCH 2/3] requests. --- .github/workflows/ci-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 60e9a303..654f00f3 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -57,7 +57,8 @@ jobs: poetry install --no-interaction -C gamutrfwaterfall && \ poetry install --no-interaction -C utils/mavlink-api && \ poetry install --no-interaction && \ - sudo dpkg -r --force-depends python3-numpy + sudo dpkg -r --force-depends python3-numpy && \ + sudo pip3 install -U pyserial requests - name: Code Quality - yamllint run: | yamllint -s *yml @@ -75,7 +76,6 @@ jobs: PYTHONPATH: /usr/local/lib/python3.10/dist-packages:/usr/lib/python3/dist-packages run: | sudo pip3 install pytype=="$(grep -E "pytype = " pyproject.toml | grep -Eo "[0-9\.]+")" && \ - sudo pip3 install -U pyserial && \ pytype -k gamutrf/ && \ pytype -k gamutrflib/ && \ pytype -k utils/mavlink-api From 4b77e54cc29677e90e2c9e63c7a9f9634950cbab Mon Sep 17 00:00:00 2001 From: Josh Bailey Date: Fri, 19 Jul 2024 07:54:55 +0000 Subject: [PATCH 3/3] requests. --- .github/workflows/ci-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 654f00f3..bfcf1301 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -57,8 +57,8 @@ jobs: poetry install --no-interaction -C gamutrfwaterfall && \ poetry install --no-interaction -C utils/mavlink-api && \ poetry install --no-interaction && \ - sudo dpkg -r --force-depends python3-numpy && \ - sudo pip3 install -U pyserial requests + sudo pip3 install -U pyserial requests && \ + sudo dpkg -r --force-depends python3-numpy python3-requests - name: Code Quality - yamllint run: | yamllint -s *yml