🐛 Fix pip install command for yt-dlp to include default extras

This commit is contained in:
abhiTronix
2025-11-05 00:54:27 +05:30
committed by Abhishek Thakur
parent b5b4e8b134
commit 572002236c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- "python -m pip install --upgrade pip wheel numpy cython opencv-python"
- "python -m pip install --upgrade .[asyncio] six httpx yt_dlp aiortc"
- "python -m pip install --upgrade .[asyncio] six httpx yt-dlp[default] aiortc"
- "python -m pip install --upgrade pytest codecov pytest-cov pytest-asyncio m3u8 async-asgi-testclient paramiko"
- "python -m pip install --upgrade deffcode"
- "python -m pip install https://github.com/abhiTronix/python-mpegdash/releases/download/0.3.0-dev2/mpegdash-0.3.0.dev2-py3-none-any.whl"
+1 -1
View File
@@ -67,7 +67,7 @@ steps:
- script: |
python -m pip install -U pip wheel numpy cython opencv-python
python -m pip install -U .[asyncio] yt_dlp httpx six paramiko
python -m pip install -U .[asyncio] yt-dlp[default] httpx six paramiko
python -m pip install -U codecov pytest pytest-asyncio pytest-cov mpegdash m3u8 async-asgi-testclient
python -m pip install -U deffcode
displayName: "Install pip dependencies"