From 2e1288ef3972f22cce30852127f60ea8d40cc65d Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Mon, 15 Sep 2025 17:13:38 +0100 Subject: [PATCH 1/2] Stop testing 2.7 --- .github/workflows/tests.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4aa0063..88e6e68 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,18 +9,8 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["2.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] os: ["ubuntu-latest", "windows-latest", "macos-latest"] - exclude: - - python-version: "2.7" - os: "windows-latest" - - python-version: "2.7" - os: "macos-latest" - - python-version: "2.7" - os: "ubuntu-latest" - include: - - python-version: "2.7" - os: "ubuntu-20.04" env: TOXENV: py From a703cbb9fecd256c1cc039c27323b5e939298a07 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Mon, 15 Sep 2025 21:00:51 +0100 Subject: [PATCH 2/2] Commit --- .github/workflows/tests.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 88e6e68..4cef85e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,13 +16,7 @@ jobs: steps: - uses: actions/checkout@v5 - - if: ${{ matrix.python-version == '2.7' }} - run: | - sudo apt-get install python-is-python2 - curl -sSL https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py - python get-pip.py - - if: ${{ matrix.python-version != '2.7' }} - name: ${{ matrix.python-version }} - ${{ matrix.os }} + - name: ${{ matrix.python-version }} - ${{ matrix.os }} uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }}