Skip to content

Commit

Permalink
ci: Update Python version in CI/CD workflow
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
ntindle committed Nov 9, 2023
1 parent ee8d3b2 commit f6935e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit f6935e0

Please sign in to comment.