Skip to content

Commit

Permalink
Use python 3.10 during ci (#558)
Browse files Browse the repository at this point in the history
CircuitPython now requires 3.9 as a minumum
  • Loading branch information
jepler committed Nov 6, 2022
1 parent 38e99c6 commit 155dad9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.10"

- name: Install requirements
run: |
Expand Down Expand Up @@ -68,10 +68,10 @@ jobs:
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: "3.10"

- name: Versions
run: |
Expand Down

0 comments on commit 155dad9

Please sign in to comment.