@@ -42,21 +42,21 @@ jobs:
4242 python-version : ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
4343 steps :
4444 - uses : actions/checkout@v2
45- - name : Install pipenv
46- run : pipx install pipenv
4745 - name : Setup Python
4846 uses : ./
4947 with :
5048 python-version : ${{ matrix.python-version }}
5149 cache : ' pipenv'
50+ - run : pip install --user pipenv
5251 - name : Install dependencies
5352 shell : pwsh
5453 run : |
55- if ("${{ matrix.python-version }}" -Match "pypy") {
56- pipenv install flake8 --python pypy
57- } else {
58- pipenv install flake8 --python ${{ matrix.python-version }}
59- }
54+ # if ("${{ matrix.python-version }}" -Match "pypy") {
55+ # pipenv install flake8 --python pypy
56+ # } else {
57+ # pipenv install flake8 --python ${{ matrix.python-version }}
58+ # }
59+ pipenv install flake8
6060 python-pip-dependencies-caching-path :
6161 name : Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
6262 runs-on : ${{ matrix.os }}
@@ -86,19 +86,19 @@ jobs:
8686 python-version : ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
8787 steps :
8888 - uses : actions/checkout@v2
89- - name : Install pipenv
90- run : pipx install pipenv
9189 - name : Setup Python
9290 uses : ./
9391 with :
9492 python-version : ${{ matrix.python-version }}
9593 cache : ' pipenv'
9694 cache-dependency-path : ' **/requirements-linux.txt'
95+ - run : pip install --user pipenv
9796 - name : Install dependencies
9897 shell : pwsh
9998 run : |
100- if ("${{ matrix.python-version }}" -Match "pypy") {
101- pipenv install flake8 --python pypy
102- } else {
103- pipenv install flake8 --python ${{ matrix.python-version }}
104- }
99+ # if ("${{ matrix.python-version }}" -Match "pypy") {
100+ # pipenv install flake8 --python pypy
101+ # } else {
102+ # pipenv install flake8 --python ${{ matrix.python-version }}
103+ # }
104+ pipenv install flake8
0 commit comments