mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 12:59:42 -07:00
Combine package requirements into single file
This commit is contained in:
parent
60920101bf
commit
81d8d5e1ae
4 changed files with 12 additions and 15 deletions
4
.github/workflows/publish-installers.yml
vendored
4
.github/workflows/publish-installers.yml
vendored
|
@ -59,13 +59,13 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: ~\AppData\Local\pip\Cache
|
path: ~\AppData\Local\pip\Cache
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles(format('package/requirements-{0}.txt', matrix.os)) }}
|
key: ${{ runner.os }}-pip-${{ hashFiles('package/requirements-package.txt') }}
|
||||||
restore-keys: ${{ runner.os }}-pip-
|
restore-keys: ${{ runner.os }}-pip-
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r package/requirements-${{ matrix.os }}.txt
|
pip install -r package/requirements-package.txt
|
||||||
|
|
||||||
- name: Build Package
|
- name: Build Package
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
apscheduler==3.8.0
|
|
||||||
importlib-resources==5.2.2
|
|
||||||
pyinstaller==4.5.1
|
|
||||||
pyopenssl==21.0.0
|
|
||||||
pycryptodomex==3.11.0
|
|
||||||
pyobjc-framework-Cocoa==7.3
|
|
||||||
pyobjc-core==7.3
|
|
10
package/requirements-package.txt
Normal file
10
package/requirements-package.txt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
apscheduler==3.8.0
|
||||||
|
importlib-resources==5.2.2
|
||||||
|
pyinstaller==4.5.1
|
||||||
|
pyopenssl==21.0.0
|
||||||
|
pycryptodomex==3.11.0
|
||||||
|
|
||||||
|
pyobjc-framework-Cocoa==7.3; platform_system == "Darwin"
|
||||||
|
pyobjc-core==7.3; platform_system == "Darwin"
|
||||||
|
|
||||||
|
pywin32==302; platform_system == "Windows"
|
|
@ -1,6 +0,0 @@
|
||||||
apscheduler==3.8.0
|
|
||||||
importlib-resources==5.2.2
|
|
||||||
pyinstaller==4.5.1
|
|
||||||
pyopenssl==21.0.0
|
|
||||||
pycryptodomex==3.11.0
|
|
||||||
pywin32==302
|
|
Loading…
Add table
Add a link
Reference in a new issue