Skip to content
Snippets Groups Projects
Verified Commit 9d0df34d authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Make swh.graph dependency optional

It's not packaged nor ready yet as some internal reworking has been discussed.

Related to T3412
parent 0bec6231
No related branches found
Tags v0.6.1
1 merge request!94Make swh.graph dependency optional
swh.graph >= v0.3.2
swh.core[db,http] >= 0.14.0
swh.graph >= v0.3.2
swh.model >= 0.3
swh.objstorage >= 0.0.17
swh.scheduler >= 0.7.0
......
......@@ -48,7 +48,10 @@ setup(
install_requires=parse_requirements() + parse_requirements("swh"),
setup_requires=["setuptools-scm"],
use_scm_version=True,
extras_require={"testing": parse_requirements("test")},
extras_require={
"testing": parse_requirements("test"),
"graph": parse_requirements("swh-graph"),
},
include_package_data=True,
zip_safe=False,
entry_points="""
......
......@@ -70,7 +70,6 @@ def cook(
and outputs it to the given file.
"""
from swh.core import config
from swh.graph.client import RemoteGraphClient
from swh.objstorage.factory import get_objstorage
from swh.storage import get_storage
......@@ -101,10 +100,21 @@ def cook(
f"an explicit --cooker-type."
)
try:
from swh.graph.client import RemoteGraphClient # optional dependency
graph = RemoteGraphClient(**conf["graph"]) if conf.get("graph") else None
except ModuleNotFoundError:
if conf.get("graph"):
raise EnvironmentError(
"Graph configuration required but module is not installed."
)
else:
graph = None
backend = InMemoryVaultBackend()
storage = get_storage(**conf["storage"])
objstorage = get_objstorage(**conf["objstorage"]) if "objstorage" in conf else None
graph = RemoteGraphClient(**conf["graph"]) if "graph" in conf else None
cooker_cls = get_cooker_cls(cooker_name)
cooker = cooker_cls(
obj_type=cooker_name,
......
# Copyright (C) 2017-2020 The Software Heritage developers
# Copyright (C) 2017-2021 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
......@@ -10,7 +10,6 @@ from typing import Any, Dict
from swh.core.config import load_named_config
from swh.core.config import read as read_config
from swh.graph.client import RemoteGraphClient
from swh.storage import get_storage
from swh.vault import get_vault
from swh.vault.cookers.base import DEFAULT_CONFIG, DEFAULT_CONFIG_PATH
......@@ -90,7 +89,18 @@ def get_cooker(obj_type: str, obj_id: str):
storage = get_storage(**vcfg.pop("storage"))
backend = get_vault(**vcfg)
graph = RemoteGraphClient(**vcfg["graph"]) if "graph" in vcfg else None
try:
from swh.graph.client import RemoteGraphClient # optional dependency
graph = RemoteGraphClient(**vcfg["graph"]) if vcfg.get("graph") else None
except ModuleNotFoundError:
if vcfg.get("graph"):
raise EnvironmentError(
"Graph configuration required but module is not installed."
)
else:
graph = None
return cooker_cls(
obj_type,
......
......@@ -4,6 +4,7 @@ envlist=black,flake8,mypy,py3
[testenv]
extras =
testing
graph
deps =
pytest-cov
commands =
......@@ -28,6 +29,7 @@ commands =
[testenv:mypy]
extras =
testing
graph
deps =
mypy
commands =
......@@ -41,6 +43,7 @@ whitelist_externals = make
usedevelop = true
extras =
testing
graph
deps =
# fetch and install swh-docs in develop mode
-e git+https://forge.softwareheritage.org/source/swh-docs#egg=swh.docs
......@@ -60,6 +63,7 @@ whitelist_externals = make
usedevelop = true
extras =
testing
graph
deps =
# install swh-docs in develop mode
-e ../swh-docs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment