mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2025-02-18 06:18:25 +00:00
dont try to install brew casks on linux
This commit is contained in:
parent
cd3b937469
commit
1dff8bae40
4 changed files with 4 additions and 5 deletions
|
@ -16,7 +16,6 @@ from pydantic_pkgr import (
|
||||||
from abx.archivebox.base_binary import BaseBinary, env, apt, brew
|
from abx.archivebox.base_binary import BaseBinary, env, apt, brew
|
||||||
|
|
||||||
# Depends on Other Plugins:
|
# Depends on Other Plugins:
|
||||||
from archivebox.config import CONSTANTS
|
|
||||||
from archivebox.config.common import SHELL_CONFIG
|
from archivebox.config.common import SHELL_CONFIG
|
||||||
from plugins_pkg.puppeteer.binproviders import PUPPETEER_BINPROVIDER
|
from plugins_pkg.puppeteer.binproviders import PUPPETEER_BINPROVIDER
|
||||||
from plugins_pkg.playwright.binproviders import PLAYWRIGHT_BINPROVIDER
|
from plugins_pkg.playwright.binproviders import PLAYWRIGHT_BINPROVIDER
|
||||||
|
@ -99,7 +98,7 @@ class ChromeBinary(BaseBinary):
|
||||||
'packages': APT_DEPENDENCIES,
|
'packages': APT_DEPENDENCIES,
|
||||||
},
|
},
|
||||||
brew.name: {
|
brew.name: {
|
||||||
'packages': ['--cask', 'chromium'],
|
'packages': ['--cask', 'chromium'] if platform.system().lower() == 'darwin' else [],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
archivebox/vendor/pydantic-pkgr
vendored
2
archivebox/vendor/pydantic-pkgr
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit 59ec81566120f8c0c86a6a35b4be91c25d43096d
|
Subproject commit a774f24644ee14f14fa2cc3d8e6e0a585ae00fdd
|
|
@ -78,7 +78,7 @@ dependencies = [
|
||||||
"django-taggit==6.1.0",
|
"django-taggit==6.1.0",
|
||||||
"base32-crockford==0.3.0",
|
"base32-crockford==0.3.0",
|
||||||
# "pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7",
|
# "pocket@git+https://github.com/tapanpandita/pocket.git@v0.3.7",
|
||||||
"pydantic-pkgr>=0.5.3",
|
"pydantic-pkgr>=0.5.4",
|
||||||
############# Plugin Dependencies ################
|
############# Plugin Dependencies ################
|
||||||
"sonic-client>=1.0.0",
|
"sonic-client>=1.0.0",
|
||||||
"yt-dlp>=2024.8.6", # for: media"
|
"yt-dlp>=2024.8.6", # for: media"
|
||||||
|
|
2
uv.lock
generated
2
uv.lock
generated
|
@ -41,7 +41,7 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "archivebox"
|
name = "archivebox"
|
||||||
version = "0.8.5rc48"
|
version = "0.8.5rc49"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "atomicwrites" },
|
{ name = "atomicwrites" },
|
||||||
|
|
Loading…
Add table
Reference in a new issue