Add build requirements.txt

This commit is contained in:
JonnyWong16 2020-04-26 22:42:02 -07:00
commit 5b022599b4
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
3 changed files with 12 additions and 4 deletions

View file

@ -30,13 +30,13 @@ jobs:
uses: actions/cache@v1
with:
path: ~\AppData\Local\pip\Cache
key: ${{ runner.os }}-pip-${{ steps.get_version.outputs.VERSION }}
key: ${{ runner.os }}-pip-${{ hashFiles('package/requirements-windows.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pyopenssl pycryptodomex pywin32 pyinstaller
pip install -r package/requirements-windows.txt
- name: Build Package
run: |
@ -89,13 +89,13 @@ jobs:
uses: actions/cache@v1
with:
path: ~/Library/Caches/pip
key: ${{ runner.os }}-pip-${{ steps.get_version.outputs.VERSION }}
key: ${{ runner.os }}-pip-${{ hashFiles('package/requirements-macos.txt') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pyopenssl pycryptodomex pyinstaller pyobjc
pip install -r package/requirements-macos.txt
- name: Build Package
run: |

View file

@ -0,0 +1,4 @@
pyinstaller
pyopenssl
pycryptodomex
pyobjc

View file

@ -0,0 +1,4 @@
pyinstaller
pyopenssl
pycryptodomex
pywin32