File size: 496 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Register the classic conda solver."""
from ..base.constants import CLASSIC_SOLVER
from . import hookimpl
from .types import CondaSolver
@hookimpl(tryfirst=True) # make sure the classic solver can't be overwritten
def conda_solvers():
"""The classic solver as shipped by default in conda."""
from ..core.solve import Solver
yield CondaSolver(
name=CLASSIC_SOLVER,
backend=Solver,
)
|