mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
sigh vendor yet another dependency
This commit is contained in:
parent
a58ad5b272
commit
bd8a01e677
6 changed files with 7 additions and 3 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -23,3 +23,6 @@
|
|||
[submodule "archivebox/vendor/django-taggit"]
|
||||
path = archivebox/vendor/django-taggit
|
||||
url = https://github.com/jazzband/django-taggit
|
||||
[submodule "archivebox/vendor/python-atomicwrites"]
|
||||
path = archivebox/vendor/python-atomicwrites
|
||||
url = https://github.com/untitaker/python-atomicwrites
|
||||
|
|
|
@ -10,7 +10,7 @@ from typing import Optional, Union, Set, Tuple
|
|||
from subprocess import run as subprocess_run
|
||||
|
||||
from crontab import CronTab
|
||||
from atomicwrites import atomic_write as lib_atomic_write
|
||||
from .vendor.atomicwrites import atomic_write as lib_atomic_write
|
||||
|
||||
from .util import enforce_types, ExtendedEncoder
|
||||
from .config import OUTPUT_PERMISSIONS
|
||||
|
|
1
archivebox/vendor/atomicwrites.py
vendored
Symbolic link
1
archivebox/vendor/atomicwrites.py
vendored
Symbolic link
|
@ -0,0 +1 @@
|
|||
python-atomicwrites/atomicwrites/__init__.py
|
1
archivebox/vendor/python-atomicwrites
vendored
Submodule
1
archivebox/vendor/python-atomicwrites
vendored
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit c35cd32eb364d5a4210e64bf38fd1a55f329f316
|
1
setup.py
1
setup.py
|
@ -36,7 +36,6 @@ INSTALL_REQUIRES = [
|
|||
# if there is no apt python3-package equivalent, then vendor it instead in
|
||||
# ./archivebox/vendor/
|
||||
"requests>=2.24.0",
|
||||
"atomicwrites>=1.4.0",
|
||||
"mypy-extensions>=0.4.3",
|
||||
"django>=3.1.3",
|
||||
"django-extensions>=3.0.3",
|
||||
|
|
|
@ -5,6 +5,6 @@ Package3: archivebox
|
|||
Suite: focal
|
||||
Suite3: focal
|
||||
Build-Depends: dh-python, python3-pip, python3-setuptools, python3-wheel, python3-stdeb
|
||||
Depends3: nodejs, chromium-browser, wget, curl, git, ffmpeg, youtube-dl, python3-atomicwrites, python3-croniter, python3-crontab, python3-dateparser, python3-django, python3-django-extensions, python3-django-jsonfield, python3-mypy-extensions, python3-requests, python3-w3lib, ripgrep
|
||||
Depends3: nodejs, chromium-browser, wget, curl, git, ffmpeg, youtube-dl, python3-croniter, python3-crontab, python3-dateparser, python3-django, python3-django-extensions, python3-django-jsonfield, python3-mypy-extensions, python3-requests, python3-w3lib, ripgrep
|
||||
XS-Python-Version: >= 3.7
|
||||
Setup-Env-Vars: DEB_BUILD_OPTIONS=nocheck
|
||||
|
|
Loading…
Reference in a new issue