move to new vendoring fallback logic

This commit is contained in:
Nick Sweeting
2024-08-23 02:01:02 -07:00
parent eeb70c4018
commit 2c2d034d6d
14 changed files with 54 additions and 16 deletions

View File

@@ -29,12 +29,9 @@ dependencies = [
"croniter>=2.0.5", # for: archivebox schedule
"ipython>=8.23.0", # for: archivebox shell
# Extractor Dependencies
"yt-dlp>=2024.4.9", # for: media
"yt-dlp>=2024.8.6", # for: media
# "playwright>=1.43.0; platform_machine != 'armv7l'", # WARNING: playwright doesn't have any sdist, causes trouble on build systems that refuse to install wheel-only packages
# TODO: add more extractors
# - gallery-dl
# - scihubdl
# - See Github issues for more...
"django-signal-webhooks>=0.3.0",
"django-admin-data-views>=0.3.1",
"ulid-py>=1.1.0",
@@ -43,6 +40,14 @@ dependencies = [
"django-pydantic-field>=0.3.9",
"django-jsonform>=2.22.0",
"django-stubs>=5.0.2",
# these can be safely omitted when installation subsystem does not provide these as packages (e.g. apt/debian)
# archivebox will automatically load fallback vendored copies bundled via archivebox/vendor/__init__.py
"pydantic-pkgr>=0.1.4",
"atomicwrites==1.4.0",
"pocket==0.3.7",
"django-taggit==1.3.0",
"base32-crockford==0.3.0",
]
homepage = "https://github.com/ArchiveBox/ArchiveBox"