From 3aed8e1259b76d2571379d39db34c0d469b0f6c3 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 23 Sep 2024 23:33:25 +0300 Subject: [PATCH] Drop Python 3.6 & 3.7 from CI --- .github/workflows/core.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 4b8bbc66ff..29a6ae1639 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -8,12 +8,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.6", "3.7", "3.11", "3.12", "3.13.0-rc.2"] - exclude: - - os: macos-latest - python-version: "3.6" - - os: macos-latest - python-version: "3.7" + python-version: ["3.11", "3.12", "3.13.0-rc.2"] runs-on: ${{ matrix.os }} @@ -36,11 +31,6 @@ jobs: run: | tox -e py - - name: Python Lint - if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' }} - run: | - tox -e lint - - name: Integration Tests if: ${{ matrix.python-version == '3.11' }} run: |