From 49a246b3347414bba1d527370a456bfb86b9020d Mon Sep 17 00:00:00 2001 From: MasloMaslane Date: Wed, 1 May 2024 17:22:50 +0200 Subject: [PATCH] Bump python versions in tests --- .github/workflows/Arch.yaml | 2 +- .github/workflows/GithubRunner.yaml | 2 +- .github/workflows/Ubuntu.yaml | 2 +- .github/workflows/macOS.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Arch.yaml b/.github/workflows/Arch.yaml index 832bfd01..cea57a4d 100644 --- a/.github/workflows/Arch.yaml +++ b/.github/workflows/Arch.yaml @@ -9,7 +9,7 @@ jobs: runs-on: self-hosted strategy: matrix: - python-version: ["3.7.17", "3.12.0"] + python-version: ["3.8", "3.12"] name: pytest-arch-python-${{ matrix.python-version }} container: image: archlinux:latest diff --git a/.github/workflows/GithubRunner.yaml b/.github/workflows/GithubRunner.yaml index e8bdd071..53015cea 100644 --- a/.github/workflows/GithubRunner.yaml +++ b/.github/workflows/GithubRunner.yaml @@ -8,7 +8,7 @@ jobs: pytest: strategy: matrix: - python-version: ["3.7.17", "3.12.0"] + python-version: ["3.8", "3.12"] name: pytest-github-runner-python-${{ matrix.python-version }} runs-on: ubuntu-latest steps: diff --git a/.github/workflows/Ubuntu.yaml b/.github/workflows/Ubuntu.yaml index a6c364d7..bab3026b 100644 --- a/.github/workflows/Ubuntu.yaml +++ b/.github/workflows/Ubuntu.yaml @@ -9,7 +9,7 @@ jobs: runs-on: self-hosted strategy: matrix: - python-version: ["3.7.17", "3.12.0"] + python-version: ["3.8", "3.12"] name: pytest-ubuntu-python-${{ matrix.python-version }} container: image: ubuntu:latest diff --git a/.github/workflows/macOS.yaml b/.github/workflows/macOS.yaml index 66876d00..457df818 100644 --- a/.github/workflows/macOS.yaml +++ b/.github/workflows/macOS.yaml @@ -10,7 +10,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: ["3.7", "3.12"] + python-version: ["3.10", "3.12"] name: pytest-macos-python-${{ matrix.python-version }} steps: - name: Checkout