From f6935e014ff27b4cebdd8e38e2e7708df9f64853 Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Thu, 9 Nov 2023 14:35:01 -0600 Subject: [PATCH] ci: Update Python version in CI/CD workflow - Bumped the minimum supported version of Python from 3.8 to 3.11 and 3.12 in the CI/CD workflow file. This aligns with the project's updated requirements. --- .github/workflows/cicd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 151a2f9..6a87307 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: [3.11, 3.12] steps: - uses: actions/checkout@v2 - name: Set up Python @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: [3.11, 3.12] steps: - uses: actions/checkout@v2 - name: Set up Python @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: [3.11, 3.12] steps: - uses: actions/checkout@v2 - name: Set up Python @@ -78,7 +78,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: [3.11, 3.12] steps: - uses: actions/checkout@v2 - name: Set up Python