18 lines
577 B
Python
18 lines
577 B
Python
|
|
# THIS FILE WAS AUTOMATICALLY GENERATED BY deprecated_modules.py
|
|
import sys
|
|
# mypy error: Module X has no attribute y (typically for C extensions)
|
|
from . import _cca # type: ignore
|
|
from ..externals._pep562 import Pep562
|
|
from ..utils.deprecation import _raise_dep_warning_if_not_pytest
|
|
|
|
deprecated_path = 'sklearn.cross_decomposition.cca_'
|
|
correct_import_path = 'sklearn.cross_decomposition'
|
|
|
|
_raise_dep_warning_if_not_pytest(deprecated_path, correct_import_path)
|
|
|
|
def __getattr__(name):
|
|
return getattr(_cca, name)
|
|
|
|
if not sys.version_info >= (3, 7):
|
|
Pep562(__name__)
|