File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -134,12 +134,18 @@ jobs:
134134 - uses : actions/checkout@v2
135135 with :
136136 fetch-depth : 0
137- - name : Set up ${{ matrix.python.name }}
138- if : ${{ job.container == ''}}
137+ - name : Set up ${{ matrix.python.name }} (if CPython)
138+ if : ${{ job.container == '' && matrix.python.implementation == 'cpython' }}
139139 uses : actions/setup-python@v2
140140 with :
141141 python-version : ' ${{ matrix.python.action }}.0-alpha - ${{ matrix.python.action }}.X'
142142 architecture : ' ${{ matrix.arch.action }}'
143+ - name : Set up ${{ matrix.python.name }} (if PyPy)
144+ if : ${{ job.container == '' && matrix.python.implementation == 'pypy'}}
145+ uses : actions/setup-python@v2
146+ with :
147+ python-version : ' ${{ matrix.python.action }}'
148+ architecture : ' ${{ matrix.arch.action }}'
143149 - name : Install
144150 run : |
145151 pip install --upgrade pip setuptools wheel
You can’t perform that action at this time.
0 commit comments