use pip-licenses==4.0.0rc2

This commit is contained in:
Adam Velebil 2022-10-31 10:51:59 +01:00
parent f5b9bc10cb
commit 55f49fed8f
No known key found for this signature in database
GPG Key ID: AC6D6B9D715FC084
5 changed files with 2 additions and 8 deletions

View File

@ -43,8 +43,6 @@ jobs:
flutter analyze
- name: Build the Helper
env:
_PIP_USE_IMPORTLIB_METADATA: 0
run: ./build-helper.sh
- name: Build the app

View File

@ -41,8 +41,6 @@ jobs:
flutter analyze
- name: Build the Helper
env:
_PIP_USE_IMPORTLIB_METADATA: 0
run: ./build-helper.sh
- name: Build the app

View File

@ -39,8 +39,6 @@ jobs:
flutter analyze
- name: Build the Helper
env:
_PIP_USE_IMPORTLIB_METADATA: 0
run: .\build-helper.bat
- name: Build the app

View File

@ -11,7 +11,7 @@ rmdir /s /q ..\build\windows\helper-license-venv
poetry build
poetry run python -m venv ..\build\windows\helper-license-venv
..\build\windows\helper-license-venv\Scripts\python -m pip install --upgrade pip wheel
..\build\windows\helper-license-venv\Scripts\python -m pip install dist\authenticator_helper-0.1.0-py3-none-any.whl pip-licenses
..\build\windows\helper-license-venv\Scripts\python -m pip install dist\authenticator_helper-0.1.0-py3-none-any.whl 'pip-licenses=4.0.0rc2'
..\build\windows\helper-license-venv\Scripts\pip-licenses --format=json --no-license-path --with-license-file --ignore-packages authenticator-helper zxing-cpp --output-file ..\assets\licenses\helper.json
cd ..

View File

@ -40,7 +40,7 @@ VENV="../$OUTPUT/helper-license-venv"
rm -rf $VENV
poetry run python -m venv $VENV
$VENV/bin/pip install --upgrade pip wheel
$VENV/bin/pip install dist/authenticator_helper-0.1.0-py3-none-any.whl pip-licenses
$VENV/bin/pip install dist/authenticator_helper-0.1.0-py3-none-any.whl 'pip-licenses==4.0.0rc2'
$VENV/bin/pip-licenses --format=json --no-license-path --with-license-file --ignore-packages authenticator-helper zxing-cpp --output-file ../assets/licenses/helper.json
cd ..