From a5495df4b9adc8709a86375ae4c3677b9be64464 Mon Sep 17 00:00:00 2001 From: Titusz Pan Date: Wed, 29 Nov 2023 21:07:37 +0100 Subject: [PATCH] Remove python 3.7 support and update poetry --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3bb2793..5989022 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12'] + python-version: [3.8, 3.9, '3.10', '3.11', '3.12'] os: [ubuntu-20.04, macos-11, windows-2019] runs-on: ${{ matrix.os }} steps: @@ -18,7 +18,7 @@ jobs: - name: Install Poetry uses: abatilo/actions-poetry@v2.0.0 with: - poetry-version: 1.5.1 + poetry-version: 1.7.1 - name: Install Dependencies run: poetry install @@ -34,7 +34,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 - if: matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.7' + if: matrix.os == 'ubuntu-20.04' && matrix.python-version == '3.8' - name: Build Wheel run: poetry build -f wheel