Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Python 3.7 check for Langchain Integration #2308

Merged
merged 1 commit into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/zenml/integrations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@
from zenml.integrations.kubeflow import KubeflowIntegration # noqa
from zenml.integrations.kubernetes import KubernetesIntegration # noqa
from zenml.integrations.label_studio import LabelStudioIntegration # noqa
from zenml.integrations.langchain import LangchainIntegration # noqa
from zenml.integrations.lightgbm import LightGBMIntegration # noqa
# from zenml.integrations.llama_index import LlamaIndexIntegration # noqa
from zenml.integrations.mlflow import MlflowIntegration # noqa
from zenml.integrations.neptune import NeptuneIntegration # noqa
from zenml.integrations.neural_prophet import NeuralProphetIntegration # noqa
Expand All @@ -67,7 +69,3 @@
from zenml.integrations.wandb import WandbIntegration # noqa
from zenml.integrations.whylogs import WhylogsIntegration # noqa
from zenml.integrations.xgboost import XgboostIntegration # noqa

if sys.version_info > (3, 7):
# from zenml.integrations.llama_index import LlamaIndexIntegration # noqa
from zenml.integrations.langchain import LangchainIntegration # noqa
Loading