From f87827841c3e8b8aefc699e3efa2b38accd8d5e5 Mon Sep 17 00:00:00 2001 From: Tito Dal Canton Date: Wed, 30 Aug 2023 18:15:01 +0200 Subject: [PATCH] Stop testing on Python 3.7 (#4469) --- .github/workflows/basic-tests.yml | 2 +- .github/workflows/distribution.yml | 8 ++++---- .github/workflows/mac-test.yml | 2 +- .github/workflows/tut-test.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/basic-tests.yml b/.github/workflows/basic-tests.yml index ebbfd80b85a..d962026e09a 100644 --- a/.github/workflows/basic-tests.yml +++ b/.github/workflows/basic-tests.yml @@ -13,7 +13,7 @@ jobs: max-parallel: 60 matrix: os: [ubuntu-20.04] - python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + python-version: [3.8, 3.9, '3.10', '3.11'] test-type: [unittest, search, docs] steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/distribution.yml b/.github/workflows/distribution.yml index 0d7c1f54e86..321b81ff4d2 100644 --- a/.github/workflows/distribution.yml +++ b/.github/workflows/distribution.yml @@ -20,13 +20,13 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.8 - name: Install cibuildwheel run: python -m pip install cibuildwheel==2.3.1 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse env: - CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* + CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* CIBW_SKIP: "*musllinux*" CIBW_ARCHS_MACOS: x86_64 arm64 - uses: actions/upload-artifact@v2 @@ -40,10 +40,10 @@ jobs: - uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Set up Python 3.7 + - name: Set up Python 3.8 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: 3.8 - uses: actions/download-artifact@v2 with: path: ./ diff --git a/.github/workflows/mac-test.yml b/.github/workflows/mac-test.yml index 73ff725293d..5853e5353ca 100644 --- a/.github/workflows/mac-test.yml +++ b/.github/workflows/mac-test.yml @@ -13,7 +13,7 @@ jobs: max-parallel: 4 matrix: os: [macos-latest] - python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/tut-test.yml b/.github/workflows/tut-test.yml index 07b0727dd39..5abd59c9d75 100644 --- a/.github/workflows/tut-test.yml +++ b/.github/workflows/tut-test.yml @@ -13,7 +13,7 @@ jobs: max-parallel: 60 matrix: os: [ubuntu-20.04] - python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] + python-version: [3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}