mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-13 08:19:32 +01:00
[build] Add cffi
as a dependency for yt_dlp_linux
Closes #6394 Authored by: bashonly
This commit is contained in:
parent
12647e03d4
commit
776d1c3f0c
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
@ -100,8 +100,13 @@ jobs:
|
|||||||
python -m pip install -U pip setuptools wheel
|
python -m pip install -U pip setuptools wheel
|
||||||
python -m pip install -U Pyinstaller -r requirements.txt
|
python -m pip install -U Pyinstaller -r requirements.txt
|
||||||
reqs=$(mktemp)
|
reqs=$(mktemp)
|
||||||
echo -e 'python=3.10.*\npyinstaller' >$reqs
|
cat > $reqs << EOF
|
||||||
sed 's/^brotli.*/brotli-python/' <requirements.txt >>$reqs
|
python=3.10.*
|
||||||
|
pyinstaller
|
||||||
|
cffi
|
||||||
|
brotli-python
|
||||||
|
EOF
|
||||||
|
sed '/^brotli.*/d' requirements.txt >> $reqs
|
||||||
mamba create -n build --file $reqs
|
mamba create -n build --file $reqs
|
||||||
|
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
|
Loading…
Reference in New Issue
Block a user