From 9356dadfb2da7ec98a1aaa4680824b4c6ed90185 Mon Sep 17 00:00:00 2001 From: Jimmy Pettersson Date: Mon, 23 Oct 2023 18:57:37 +0200 Subject: [PATCH] drop support for 3.7, add support for 3.12, drop lint commit msg --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d057329..504116a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,16 +16,12 @@ jobs: strategy: max-parallel: 1 matrix: - python: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python: [3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 with: fetch-depth: 0 # gives the commit linter access to previous commits - - name: Commit message linter - if: ${{ matrix.python == '3.7' }} - uses: wagoid/commitlint-github-action@v4 - - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python }} @@ -34,7 +30,7 @@ jobs: run: pip install -q ".[test, ci]" - name: Lint with ${{ matrix.python }} - if: ${{ matrix.python == '3.7' }} + if: ${{ matrix.python == '3.8' }} run: make lint - name: Install, test and code coverage with ${{ matrix.python }}