From: bashonly Date: Fri, 3 Mar 2023 16:30:03 +0000 (+0530) Subject: [build] Add `cffi` as a dependency for `yt_dlp_linux` X-Git-Tag: 2023.03.03~7 X-Git-Url: https://jfr.im/git/yt-dlp.git/commitdiff_plain/776d1c3f0c9b00399896dd2e40e78e9a43218109 [build] Add `cffi` as a dependency for `yt_dlp_linux` Closes #6394 Authored by: bashonly --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c0c6837e..93668a7bf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -100,8 +100,13 @@ jobs: python -m pip install -U pip setuptools wheel python -m pip install -U Pyinstaller -r requirements.txt reqs=$(mktemp) - echo -e 'python=3.10.*\npyinstaller' >$reqs - sed 's/^brotli.*/brotli-python/' >$reqs + cat > $reqs << EOF + python=3.10.* + pyinstaller + cffi + brotli-python + EOF + sed '/^brotli.*/d' requirements.txt >> $reqs mamba create -n build --file $reqs - name: Prepare