Skip to content

Commit

Permalink
Fix issue preventing python 3.10 being installed in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh5 committed Aug 28, 2024
1 parent edd2178 commit 41aa55d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Set up Python 3.7
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: '3.7'

# Restore the python cache if it exists
- name: Restore python cache
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10
python-version: '3.10'

# Restore the python cache if it exists
- name: Restore python cache
Expand Down

0 comments on commit 41aa55d

Please sign in to comment.