Skip to content

Commit

Permalink
[build] Move optional dependencies to the default group (yt-dlp#11255)
Browse files Browse the repository at this point in the history
Closes yt-dlp#11221
Authored by: bashonly
  • Loading branch information
bashonly authored Oct 22, 2024
1 parent 2a24674 commit 87884f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ classifiers = [
"Operating System :: OS Independent",
]
dynamic = ["version"]
dependencies = [
dependencies = []

[project.optional-dependencies]
default = [
"brotli; implementation_name=='cpython'",
"brotlicffi; implementation_name!='cpython'",
"certifi",
Expand All @@ -52,9 +55,6 @@ dependencies = [
"urllib3>=1.26.17,<3",
"websockets>=13.0",
]

[project.optional-dependencies]
default = []
curl-cffi = [
"curl-cffi==0.5.10; os_name=='nt' and implementation_name=='cpython'",
"curl-cffi>=0.5.10,!=0.6.*,<0.7.2; os_name!='nt' and implementation_name=='cpython'",
Expand Down

0 comments on commit 87884f1

Please sign in to comment.