mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00:00
remove no longer needed vendored libs
This commit is contained in:
parent
80e052b166
commit
0876cc78d9
7 changed files with 12 additions and 15 deletions
8
archivebox/vendor/__init__.py
vendored
8
archivebox/vendor/__init__.py
vendored
|
@ -6,11 +6,11 @@ VENDOR_DIR = Path(__file__).parent
|
||||||
|
|
||||||
VENDORED_LIBS = {
|
VENDORED_LIBS = {
|
||||||
# sys.path dir: library name
|
# sys.path dir: library name
|
||||||
'python-atomicwrites': 'atomicwrites',
|
#'python-atomicwrites': 'atomicwrites',
|
||||||
'django-taggit': 'taggit',
|
#'django-taggit': 'taggit',
|
||||||
'pydantic-pkgr': 'pydantic_pkgr',
|
#'pydantic-pkgr': 'pydantic_pkgr',
|
||||||
'pocket': 'pocket',
|
'pocket': 'pocket',
|
||||||
'base32-crockford': 'base32_crockford',
|
#'base32-crockford': 'base32_crockford',
|
||||||
}
|
}
|
||||||
|
|
||||||
def load_vendored_libs():
|
def load_vendored_libs():
|
||||||
|
|
1
archivebox/vendor/base32-crockford
vendored
1
archivebox/vendor/base32-crockford
vendored
|
@ -1 +0,0 @@
|
||||||
Subproject commit 1ffb6021485b666ea6a562abd0a1ea6f7021188f
|
|
1
archivebox/vendor/django-taggit
vendored
1
archivebox/vendor/django-taggit
vendored
|
@ -1 +0,0 @@
|
||||||
Subproject commit 3847b3cb32cd80448a1ef4c319951a2a4a6a971c
|
|
1
archivebox/vendor/pydantic-pkgr
vendored
1
archivebox/vendor/pydantic-pkgr
vendored
|
@ -1 +0,0 @@
|
||||||
Subproject commit 7647d3757ef0655bd8ba106c4c5b27ae16909e03
|
|
1
archivebox/vendor/python-atomicwrites
vendored
1
archivebox/vendor/python-atomicwrites
vendored
|
@ -1 +0,0 @@
|
||||||
Subproject commit 4183999d9b7e81af85dee070d5311299bdf5164c
|
|
9
archivebox/vendor/requirements.txt
vendored
9
archivebox/vendor/requirements.txt
vendored
|
@ -1,6 +1,7 @@
|
||||||
# this folder contains vendored versions of these packages
|
# this folder contains vendored versions of these packages
|
||||||
|
|
||||||
atomicwrites==1.4.0
|
#atomicwrites==1.4.0
|
||||||
pocket==0.3.7
|
#pocket==0.3.7
|
||||||
django-taggit==1.3.0
|
#pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7
|
||||||
base32-crockford==0.3.0
|
#django-taggit==1.3.0
|
||||||
|
#base32-crockford==0.3.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "archivebox"
|
name = "archivebox"
|
||||||
version = "0.8.5"
|
version = "0.8.5-rc1"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
description = "Self-hosted internet archiving solution."
|
description = "Self-hosted internet archiving solution."
|
||||||
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]
|
authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]
|
||||||
|
@ -83,11 +83,11 @@ dependencies = [
|
||||||
############# VENDORED LIBS ######################
|
############# VENDORED LIBS ######################
|
||||||
# these can be safely omitted when installation subsystem does not provide these as packages (e.g. apt/debian)
|
# 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
|
# 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",
|
"atomicwrites==1.4.1",
|
||||||
"pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7",
|
|
||||||
"django-taggit==1.3.0",
|
"django-taggit==1.3.0",
|
||||||
"base32-crockford==0.3.0",
|
"base32-crockford==0.3.0",
|
||||||
|
# "pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7",
|
||||||
#################################################
|
#################################################
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue