@@ -42,21 +42,21 @@ jobs:
42
42
python-version : ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
43
43
steps :
44
44
- uses : actions/checkout@v2
45
- - name : Install pipenv
46
- run : pipx install pipenv
47
45
- name : Setup Python
48
46
uses : ./
49
47
with :
50
48
python-version : ${{ matrix.python-version }}
51
49
cache : ' pipenv'
50
+ - run : pip install --user pipenv
52
51
- name : Install dependencies
53
52
shell : pwsh
54
53
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
60
60
python-pip-dependencies-caching-path :
61
61
name : Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
62
62
runs-on : ${{ matrix.os }}
@@ -86,19 +86,19 @@ jobs:
86
86
python-version : ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
87
87
steps :
88
88
- uses : actions/checkout@v2
89
- - name : Install pipenv
90
- run : pipx install pipenv
91
89
- name : Setup Python
92
90
uses : ./
93
91
with :
94
92
python-version : ${{ matrix.python-version }}
95
93
cache : ' pipenv'
96
94
cache-dependency-path : ' **/requirements-linux.txt'
95
+ - run : pip install --user pipenv
97
96
- name : Install dependencies
98
97
shell : pwsh
99
98
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