Compare commits

..

No commits in common. "2c7571a5a121c9779ed89e7f3c04f1830c967a7d" and "45522873740036f6411468a9a2d04c355f7c8bcc" have entirely different histories.

5 changed files with 12 additions and 9 deletions

View File

@ -53,7 +53,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include dev
run: python3 ./devscripts/install_deps.py --include ci
- name: Run tests
continue-on-error: False
run: |

View File

@ -15,7 +15,7 @@ jobs:
with:
python-version: 3.9
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include dev
run: python3 ./devscripts/install_deps.py --include ci
- name: Run tests
continue-on-error: true
run: python3 ./devscripts/run_tests.py download
@ -42,7 +42,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include dev
run: python3 ./devscripts/install_deps.py --include ci
- name: Run tests
continue-on-error: true
run: python3 ./devscripts/run_tests.py download

View File

@ -15,7 +15,7 @@ jobs:
with:
python-version: '3.8'
- name: Install test requirements
run: python3 ./devscripts/install_deps.py --include dev
run: python3 ./devscripts/install_deps.py --include ci
- name: Run tests
run: |
python3 -m yt_dlp -v || true
@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- name: Install flake8
run: python3 ./devscripts/install_deps.py -o --include dev
run: python3 -m pip install -U flake8
- name: Make lazy extractors
run: python3 ./devscripts/make_lazy_extractors.py
- name: Run flake8

View File

@ -253,7 +253,7 @@ jobs:
- name: Install Requirements
run: |
sudo apt -y install pandoc man
python devscripts/install_deps.py -o --include build
python -m pip install -U build setuptools wheel
- name: Prepare
env:

View File

@ -52,14 +52,17 @@ dependencies = [
[project.optional-dependencies]
secretstorage = ["secretstorage"]
pyinstaller = ["pyinstaller>=6.3"]
py2exe = ["py2exe>=0.12"]
build = [
"build",
"pip",
"setuptools>=61",
"wheel",
]
pyinstaller = ["Pyinstaller>=6.3"]
py2exe = ["py2exe>=0.12"]
ci = [
"flake8",
"pytest",
]
dev = [
"flake8",
"isort",