File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 48
48
python-version : ${{ matrix.python-version }}
49
49
cache : ' pipenv'
50
50
- name : Install pipenv
51
- run : pipx install pipenv
51
+ shell : pwsh
52
+ run : |
53
+ pipx install pipenv
54
+ $pythonVersion = ("${{ matrix.python-version }}" -Match "pypy") ? "pypy" : "${{ matrix.python-version }}"
55
+ pipenv --python $pythonVersion
52
56
- name : Install dependencies
53
57
run : pipenv install numpy
54
58
@@ -110,6 +114,9 @@ jobs:
110
114
cache : ' pipenv'
111
115
cache-dependency-path : ' **/requirements-linux.txt'
112
116
- name : Install pipenv
113
- run : pipx install pipenv
117
+ run : |
118
+ pipx install pipenv
119
+ $pythonVersion = ("${{ matrix.python-version }}" -Match "pypy") ? "pypy" : "${{ matrix.python-version }}"
120
+ pipenv --python $pythonVersion
114
121
- name : Install dependencies
115
122
run : pipenv install numpy
You can’t perform that action at this time.
0 commit comments