requests is currently listed only as a testing dependency. However, it appears to be used in the core logic of doc-builder, which means it should be part of the base install_requires.
|
install_requires = [ |
|
"black", |
|
"GitPython", |
|
"tqdm", |
|
"pyyaml", |
|
"packaging", |
|
"nbformat", |
|
"huggingface_hub", |
|
"pillow", |
|
"meilisearch==0.34.1", |
|
] |
|
dependencies = [ |
|
"GitPython", |
|
"tqdm", |
|
"pyyaml", |
|
"packaging", |
|
"nbformat", |
|
"huggingface_hub", |
|
"pillow", |
|
"meilisearch==0.34.1", |
|
"watchdog>=6.0.0", |
|
"httpx", |
|
] |
requestsis currently listed only as a testing dependency. However, it appears to be used in the core logic ofdoc-builder, which means it should be part of the baseinstall_requires.doc-builder/setup.py
Lines 6 to 16 in 72f7b07
doc-builder/setup.py
Line 29 in 72f7b07
doc-builder/pyproject.toml
Lines 22 to 33 in 72f7b07