1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-18 07:05:41 +07:00

[rh:requests] Patch support for requests 2.32.2+ (#9992)

Authored by: Grub4K
This commit is contained in:
Simon Sawicki
2024-05-22 16:22:25 +02:00
committed by GitHub
parent 4ccd73fea0
commit 3f7999533e
5 changed files with 36 additions and 13 deletions

View File

@@ -46,7 +46,7 @@ dependencies = [
"certifi",
"mutagen",
"pycryptodomex",
"requests>=2.32.0,<3",
"requests>=2.31.0,<3",
"urllib3>=1.26.17,<3",
"websockets>=12.0",
]
@@ -73,7 +73,10 @@ pyinstaller = [
"pyinstaller>=6.3; sys_platform!='darwin'",
"pyinstaller==5.13.2; sys_platform=='darwin'", # needed for curl_cffi
]
py2exe = ["py2exe>=0.12"]
py2exe = [
"py2exe>=0.12",
"requests==2.31.*",
]
[project.urls]
Documentation = "https://github.com/yt-dlp/yt-dlp#readme"