remove no longer needed vendored libs

This commit is contained in:
Nick Sweeting 2024-10-04 23:35:34 -07:00
parent 80e052b166
commit 0876cc78d9
No known key found for this signature in database
7 changed files with 12 additions and 15 deletions

View file

@ -6,11 +6,11 @@ VENDOR_DIR = Path(__file__).parent
VENDORED_LIBS = {
# sys.path dir: library name
'python-atomicwrites': 'atomicwrites',
'django-taggit': 'taggit',
'pydantic-pkgr': 'pydantic_pkgr',
#'python-atomicwrites': 'atomicwrites',
#'django-taggit': 'taggit',
#'pydantic-pkgr': 'pydantic_pkgr',
'pocket': 'pocket',
'base32-crockford': 'base32_crockford',
#'base32-crockford': 'base32_crockford',
}
def load_vendored_libs():

@ -1 +0,0 @@
Subproject commit 1ffb6021485b666ea6a562abd0a1ea6f7021188f

@ -1 +0,0 @@
Subproject commit 3847b3cb32cd80448a1ef4c319951a2a4a6a971c

@ -1 +0,0 @@
Subproject commit 7647d3757ef0655bd8ba106c4c5b27ae16909e03

@ -1 +0,0 @@
Subproject commit 4183999d9b7e81af85dee070d5311299bdf5164c

View file

@ -1,6 +1,7 @@
# this folder contains vendored versions of these packages
atomicwrites==1.4.0
pocket==0.3.7
django-taggit==1.3.0
base32-crockford==0.3.0
#atomicwrites==1.4.0
#pocket==0.3.7
#pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7
#django-taggit==1.3.0
#base32-crockford==0.3.0

View file

@ -1,6 +1,6 @@
[project]
name = "archivebox"
version = "0.8.5"
version = "0.8.5-rc1"
requires-python = ">=3.10"
description = "Self-hosted internet archiving solution."
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]
@ -83,11 +83,11 @@ dependencies = [
############# VENDORED LIBS ######################
# 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.4.2",
"pydantic-pkgr>=0.4.3",
"atomicwrites==1.4.1",
"pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7",
"django-taggit==1.3.0",
"base32-crockford==0.3.0",
# "pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7",
#################################################
]