Skip to content

Commit

Permalink
chore(ci): update Python version to 3.9 in CI pipeline
Browse files Browse the repository at this point in the history
Updated the Python version from 3.8 to 3.9 in the CI/CD pipeline
configuration file. This change ensures compatibility with the latest
features and improvements in Python 3.9.
  • Loading branch information
psmyth94 committed Nov 18, 2024
1 parent 4f8501b commit 76f40a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 76f40a1

Please sign in to comment.