File tree Expand file tree Collapse file tree 5 files changed +59
-74
lines changed Expand file tree Collapse file tree 5 files changed +59
-74
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,12 @@ jobs:
48
48
python-version : ${{ matrix.python-version }}
49
49
cache : ' pipenv'
50
50
- name : Install pipenv
51
- run : pipx install pipenv
51
+ run : curl https://raw.githubusercontent.com/pypa/ pipenv/master/get-pipenv.py | python
52
52
- name : Install dependencies
53
53
run : |
54
- cd __tests__/data
55
- pipenv install --verbose
54
+ mv ./__tests__/data/Pipfile.lock .
55
+ mv ./__tests__/data/Pipfile .
56
+ pipenv install --keep-outdated
56
57
57
58
python-poetry-dependencies-caching :
58
59
name : Test poetry (Python ${{ matrix.python-version}}, ${{ matrix.os }})
@@ -112,8 +113,9 @@ jobs:
112
113
cache : ' pipenv'
113
114
cache-dependency-path : ' **/pipenv-requirements.txt'
114
115
- name : Install pipenv
115
- run : pipx install pipenv
116
+ run : curl https://raw.githubusercontent.com/pypa/ pipenv/master/get-pipenv.py | python
116
117
- name : Install dependencies
117
118
run : |
118
- cd __tests__/data
119
- pipenv install --verbose
119
+ mv ./__tests__/data/Pipfile.lock .
120
+ mv ./__tests__/data/Pipfile .
121
+ pipenv install --keep-outdated
Original file line number Diff line number Diff line change @@ -269,12 +269,12 @@ steps:
269
269
``` yaml
270
270
steps :
271
271
- uses : actions/checkout@v3
272
- - name : Install pipenv
273
- run : pipx install pipenv
274
272
- uses : actions/setup-python@v4
275
273
with :
276
274
python-version : ' 3.9'
277
275
cache : ' pipenv'
276
+ - name : Install pipenv
277
+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
278
278
- run : pipenv install
279
279
` ` `
280
280
@@ -308,15 +308,15 @@ steps:
308
308
` ` ` yaml
309
309
steps :
310
310
- uses : actions/checkout@v3
311
- - name : Install pipenv
312
- run : pipx install pipenv
313
311
- uses : actions/setup-python@v4
314
312
with :
315
313
python-version : ' 3.9'
316
314
cache : ' pipenv'
317
315
cache-dependency-path : |
318
316
server/app/Pipfile.lock
319
317
__test__/app/Pipfile.lock
318
+ - name : Install pipenv
319
+ run : curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
320
320
- run : pipenv install
321
321
` ` `
322
322
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import {getCacheDistributor} from '../src/cache-distributions/cache-factory';
5
5
6
6
describe ( 'restore-cache' , ( ) => {
7
7
const pipFileLockHash =
8
- 'd1dd6218299d8a6db5fc2001d988b34a8b31f1e9d0bb4534d377dde7c19f64b3 ' ;
8
+ 'a3bdcc71289e4979ca9e051810d81999cc99823109faf6912e17ff14c8e621a6 ' ;
9
9
const requirementsHash =
10
10
'd8110e0006d7fb5ee76365d565eef9d37df1d11598b912d3eb66d398d57a1121' ;
11
11
const requirementsLinuxHash =
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ verify_ssl = true
4
4
name = " pypi"
5
5
6
6
[packages ]
7
- numpy = " 1.22.3 "
8
- pandas = " 1.4.2 "
7
+ flake8 = " ==4.0.1 "
8
+ numpy = " ==1.23.0 "
9
9
10
10
[dev-packages ]
11
11
You can’t perform that action at this time.
0 commit comments