8000 github/workflows: Use Python 3.8 for macos workflow. · micropython/micropython@af6cb07 · GitHub
[go: up one dir, main page]

Skip to content

Commit af6cb07

Browse files
committed
github/workflows: Use Python 3.8 for macos workflow.
Signed-off-by: Damien George <damien@micropython.org>
1 parent aeb5fac commit af6cb07

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ports_unix.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,9 @@ jobs:
190190
runs-on: macos-11.0
191191
steps:
192192
- uses: actions/checkout@v2
193-
- uses: actions/setup-python@v1
193+
- uses: actions/setup-python@v,
194+
with:
195+
python-version: '3.8'
194196
- name: Build
195197
run: source tools/ci.sh && ci_unix_macos_build
196198
- name: Run tests

tests/basics/generator_send.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ def f():
1010
except TypeError:
1111
print("caught")
1212

13+
#g = f()
1314
print(g.send(None))
1415
print(g.send(100))
1516
print(g.send(200))

0 commit comments

Comments
 (0)
0