[build] remove setuptools and requests version restrictions

This commit is contained in:
Mike Fährmann
2024-09-28 16:48:21 +02:00
parent df4ecef364
commit 6c0cce8dff
4 changed files with 4 additions and 5 deletions

View File

@@ -71,7 +71,7 @@ jobs:
- name: Build executable
run: |
pip install 'setuptools<71' 'requests<2.32' requests[socks] yt-dlp pyyaml ${{ matrix.python-packages }} pyinstaller
pip install requests requests[socks] yt-dlp pyyaml ${{ matrix.python-packages }} pyinstaller
python ./scripts/pyinstaller.py --label '${{ env.LABEL }}'
- uses: actions/upload-artifact@v4

View File

@@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12.3", "pypy3.9"]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
steps:
- uses: actions/checkout@v4
@@ -43,7 +43,7 @@ jobs:
3.4|3.5)
# don't install yt-dlp
;;
3.6|3.7)
3.6|3.7|3.8)
# install from PyPI
pip install yt-dlp
;;