From dabd36c97183b449067c5b01dadab0819450f784 Mon Sep 17 00:00:00 2001 From: Jan Buchar Date: Tue, 16 Jul 2024 16:58:01 +0200 Subject: [PATCH] ci: Stop testing python 3.8 --- .github/workflows/check_version_availability.yaml | 2 +- .github/workflows/docs.yaml | 2 +- .github/workflows/integration_tests.yaml | 2 +- .github/workflows/lint_and_type_checks.yaml | 2 +- .github/workflows/unit_tests.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_version_availability.yaml b/.github/workflows/check_version_availability.yaml index 6a8caf80..977866f3 100644 --- a/.github/workflows/check_version_availability.yaml +++ b/.github/workflows/check_version_availability.yaml @@ -20,7 +20,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.8" + python-version: "3.9" - name: Install dependencies run: make install-dev diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index a11e2299..1c00e0a5 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -48,7 +48,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.9 - name: Install Python dependencies run: make install-dev diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 1785ddcd..af2b7881 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -18,7 +18,7 @@ jobs: matrix: # Run integration tests only on the oldest and newest supported Python versions, # as these tests are time-consuming and these versions are the most likely to encounter issues. - python-version: ["3.8", "3.12"] + python-version: ["3.9", "3.12"] max-parallel: 1 # no concurrency on this level, to not overshoot the test user limits steps: diff --git a/.github/workflows/lint_and_type_checks.yaml b/.github/workflows/lint_and_type_checks.yaml index c55ed6d7..83ddd644 100644 --- a/.github/workflows/lint_and_type_checks.yaml +++ b/.github/workflows/lint_and_type_checks.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: # We need to check out the head commit in case of PRs, diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 274bae9c..02828eed 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: