mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
d9c7b141f4
commit
7bf7b60ac7
1 changed files with 7 additions and 1 deletions
|
@ -46,7 +46,13 @@ runtime:
|
||||||
PIPENV_IGNORE_VIRTUALENVS: 1
|
PIPENV_IGNORE_VIRTUALENVS: 1
|
||||||
|
|
||||||
test:
|
test:
|
||||||
- pipenv --version | grep {{version}}
|
- run: |
|
||||||
|
if test {{version.major}} > 2000; then
|
||||||
|
VERSION=$(printf '%04d.%02d.%02d' {{version.major}} {{version.minor}} {{version.patch}})
|
||||||
|
else
|
||||||
|
VERSION={{version}}
|
||||||
|
fi
|
||||||
|
- pipenv --version | grep $VERSION
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
pipenv --python 3.7
|
pipenv --python 3.7
|
||||||
|
|
Loading…
Reference in a new issue