Skip to content

Commit ffe73a4

Browse files
committed
workflows: use current (3.8) python
now the need for 3.5 has been fixed
1 parent aa10e5c commit ffe73a4

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
env:
1717
GITHUB_CONTEXT: ${{ toJson(github) }}
1818
run: echo "$GITHUB_CONTEXT"
19-
- name: Set up Python 3.5
19+
- name: Set up Python 3.8
2020
uses: actions/setup-python@v1
2121
with:
22-
python-version: 3.5
22+
python-version: 3.8
2323
- name: Install deps
2424
run: |
2525
sudo apt-get install -y eatmydata
@@ -42,7 +42,7 @@ jobs:
4242
make -C ports/unix -j2
4343
make -C ports/unix coverage -j2
4444
- name: Test all
45-
run: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1
45+
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1
4646
working-directory: tests
4747
- name: Print failure info
4848
run: |
@@ -54,10 +54,10 @@ jobs:
5454
working-directory: tests
5555
if: failure()
5656
- name: Native Tests
57-
run: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native
57+
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native
5858
working-directory: tests
5959
- name: mpy Tests
60-
run: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --via-mpy -d basics float
60+
run: MICROPY_CPYTHON3=python3.8 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --via-mpy -d basics float
6161
working-directory: tests
6262
- name: Docs
6363
run: sphinx-build -E -W -b html . _build/html
@@ -244,10 +244,10 @@ jobs:
244244
- "xinabox_cs11"
245245

246246
steps:
247-
- name: Set up Python 3.5
247+
- name: Set up Python 3.8
248248
uses: actions/setup-python@v1
249249
with:
250-
python-version: 3.5
250+
python-version: 3.8
251251
- name: Install deps
252252
run: |
253253
sudo apt-get install -y gettext
@@ -290,10 +290,10 @@ jobs:
290290
- "fomu"
291291

292292
steps:
293-
- name: Set up Python 3.5
293+
- name: Set up Python 3.8
294294
uses: actions/setup-python@v1
295295
with:
296-
python-version: 3.5
296+
python-version: 3.8
297297
- name: Install deps
298298
run: |
299299
sudo apt-get install -y gettext

.github/workflows/create_website_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
env:
1313
GITHUB_CONTEXT: ${{ toJson(github) }}
1414
run: echo "$GITHUB_CONTEXT"
15-
- name: Set up Python 3.5
15+
- name: Set up Python 3.8
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.5
18+
python-version: 3.8
1919
- name: Install deps
2020
run: |
2121
pip install requests sh click

0 commit comments

Comments
 (0)