diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2023-03-03 22:00:03 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-03-03 22:55:10 +0530 |
commit | 776d1c3f0c9b00399896dd2e40e78e9a43218109 (patch) | |
tree | 1ffb9400176a208e164ab472e17d5b97f2c244a5 | |
parent | 12647e03d417feaa9ea6a458bea5ebd747494a53 (diff) | |
download | hypervideo-pre-776d1c3f0c9b00399896dd2e40e78e9a43218109.tar.lz hypervideo-pre-776d1c3f0c9b00399896dd2e40e78e9a43218109.tar.xz hypervideo-pre-776d1c3f0c9b00399896dd2e40e78e9a43218109.zip |
[build] Add `cffi` as a dependency for `yt_dlp_linux`
Closes #6394
Authored by: bashonly
-rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 7 insertions, 2 deletions
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/' <requirements.txt >>$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 |