From 9b268fb699242ed0e1869c25487ed0e484133f81 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sun, 20 Nov 2022 15:11:55 +0000 Subject: [PATCH 1/2] feat: update default Poetry version to 1.2.2 --- .github/workflows/ci.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ec9a1a..a8b8337 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] - poetry-version: [1.0, 1.1.15] + poetry-version: [1.0, 1.1.15, 1.2.2] os: [ubuntu-18.04, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/action.yml b/action.yml index fd66613..4d95612 100644 --- a/action.yml +++ b/action.yml @@ -8,7 +8,7 @@ inputs: poetry-version: description: "The version of poetry to install" required: true - default: "1.1.15" + default: "1.2.2" runs: using: "composite" steps: From 072d79e231a086e2e4db83be0dd4ec3cdb1e8173 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Sun, 20 Nov 2022 15:14:44 +0000 Subject: [PATCH 2/2] ci: remove Python 3.6 from CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8b8337..da1b31a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10"] poetry-version: [1.0, 1.1.15, 1.2.2] os: [ubuntu-18.04, macos-latest, windows-latest] runs-on: ${{ matrix.os }}