Skip to content

Commit 5dab611

Browse files
authored
Merge pull request #359 from dhalbert/update-python
update CI Python to 3.10
2 parents ac67640 + 1ed7ae7 commit 5dab611

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
awk -F '\/' '{ print tolower($2) }' |
2525
tr '_' '-'
2626
)
27-
- name: Set up Python 3.7
28-
uses: actions/setup-python@v1
27+
- name: Set up Python 3.10
28+
uses: actions/setup-python@v2
2929
with:
30-
python-version: 3.7
30+
python-version: "3.10"
3131
- name: Versions
3232
run: |
3333
python3 --version

.github/workflows/images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626

2727
- name: checkout submodules
2828
run: git submodule update --init --jobs 16 --depth 1
29-
- name: Set up Python 3.9
30-
uses: actions/setup-python@v1
29+
- name: Set up Python 3.10
30+
uses: actions/setup-python@v2
3131
with:
32-
python-version: 3.9
32+
python-version: "3.10"
3333

3434
- name: Checkout screenshot maker
3535
run: git clone --depth=1 https://github.com/circuitpython/CircuitPython_Library_Screenshot_Maker

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
awk -F '\/' '{ print tolower($2) }' |
2525
tr '_' '-'
2626
)
27-
- name: Set up Python 3.6
28-
uses: actions/setup-python@v1
27+
- name: Set up Python 3.10
28+
uses: actions/setup-python@v2
2929
with:
30-
python-version: 3.6
30+
python-version: "3.10"
3131
- name: Versions
3232
run: |
3333
python3 --version

0 commit comments

Comments
 (0)