mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-27 17:51:24 +01:00
Compare commits
3 Commits
59f9418645
...
f428986c63
Author | SHA1 | Date | |
---|---|---|---|
|
f428986c63 | ||
|
c0a6f72631 | ||
|
dbedc1e88e |
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -245,8 +245,8 @@ jobs:
|
||||||
gsed -i -E '/^curl_cffi.*/d' requirements.txt
|
gsed -i -E '/^curl_cffi.*/d' requirements.txt
|
||||||
python3 -m pip install -U --user --no-binary :all: Pyinstaller>=6.3 -r requirements.txt
|
python3 -m pip install -U --user --no-binary :all: Pyinstaller>=6.3 -r requirements.txt
|
||||||
mkdir curl_cffi_whls curl_cffi_universal2
|
mkdir curl_cffi_whls curl_cffi_universal2
|
||||||
python3 -m pip download --only-binary=:all: --platform macosx_11_0_arm64 curl_cffi>=0.5.9,<0.6.0 --pre -d curl_cffi_whls
|
python3 -m pip download --only-binary=:all: --platform macosx_11_0_arm64 curl_cffi>=0.5.10,<0.6.0 --pre -d curl_cffi_whls
|
||||||
python3 -m pip download --only-binary=:all: --platform macosx_11_0_x86_64 curl_cffi>=0.5.9,<0.6.0 --pre -d curl_cffi_whls
|
python3 -m pip download --only-binary=:all: --platform macosx_11_0_x86_64 curl_cffi>=0.5.10,<0.6.0 --pre -d curl_cffi_whls
|
||||||
python3 -m delocate.cmd.delocate_fuse curl_cffi_whls/curl_cffi* -w curl_cffi_universal2
|
python3 -m delocate.cmd.delocate_fuse curl_cffi_whls/curl_cffi* -w curl_cffi_universal2
|
||||||
python3 -m delocate.cmd.delocate_fuse curl_cffi_whls/cffi-* -w curl_cffi_universal2
|
python3 -m delocate.cmd.delocate_fuse curl_cffi_whls/cffi-* -w curl_cffi_universal2
|
||||||
cd curl_cffi_universal2
|
cd curl_cffi_universal2
|
||||||
|
|
|
@ -9,4 +9,4 @@ urllib3>=1.26.17,<3
|
||||||
websockets>=12.0
|
websockets>=12.0
|
||||||
# curl_cffi has builds for Linux aarch64, however Termux has issues with it: https://github.com/yifeikong/curl_cffi/issues/74
|
# curl_cffi has builds for Linux aarch64, however Termux has issues with it: https://github.com/yifeikong/curl_cffi/issues/74
|
||||||
# pypy does not work with curl_cffi
|
# pypy does not work with curl_cffi
|
||||||
curl_cffi>=0.5.9,<0.6.0; implementation_name=='cpython' and ((sys_platform == "win32" and platform_machine == "AMD64") or (sys_platform == "linux" and platform_machine == "x86_64") or sys_platform == "darwin")
|
curl_cffi>=0.5.10,<0.6.0; implementation_name=='cpython' and ((sys_platform == "win32" and platform_machine == "AMD64") or (sys_platform == "linux" and platform_machine == "x86_64") or sys_platform == "darwin")
|
|
@ -2,7 +2,7 @@ from __future__ import annotations
|
||||||
|
|
||||||
import abc
|
import abc
|
||||||
|
|
||||||
from .common import RequestHandler, Response
|
from .common import Response, RequestHandler
|
||||||
|
|
||||||
|
|
||||||
class WebSocketResponse(Response):
|
class WebSocketResponse(Response):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user