File tree 2 files changed +9
-5
lines changed
2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,12 @@ jobs:
22
22
awk -F '\/' '{ print tolower($2) }' |
23
23
tr '_' '-'
24
24
)
25
- - name : Set up Python 3.x
25
+ # Python 3.10 rejects a nonstandard Python syntax that is required by
26
+ # CircuitPython's asyncio implementation
27
+ - name : Set up Python 3.9
26
28
uses : actions/setup-python@v2
27
29
with :
28
- python-version : " 3.x "
30
+ python-version : " 3.9 "
29
31
- name : Versions
30
32
run : |
31
33
python3 --version
Original file line number Diff line number Diff line change @@ -24,10 +24,12 @@ jobs:
24
24
awk -F '\/' '{ print tolower($2) }' |
25
25
tr '_' '-'
26
26
)
27
- - name : Set up Python 3.x
27
+ # Python 3.10 rejects a nonstandard Python syntax that is required by
28
+ # CircuitPython's asyncio implementation
29
+ - name : Set up Python 3.9
28
30
uses : actions/setup-python@v2
29
31
with :
30
- python-version : " 3.x "
32
+ python-version : " 3.9 "
31
33
- name : Versions
32
34
run : |
33
35
python3 --version
69
71
if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
70
72
uses : actions/setup-python@v2
71
73
with :
72
- python-version : ' 3.x '
74
+ python-version : ' 3.9 '
73
75
- name : Install dependencies
74
76
if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
75
77
run : |
You can’t perform that action at this time.
0 commit comments