(all): update removal in deprecation warnings from 0.2 to 0.3 (#21265)

We are pushing out the removal of these to 0.3.

`find . -type f -name "*.py" -exec sed -i ''
's/removal="0\.2/removal="0.3/g' {} +`
This commit is contained in:
ccurme
2024-05-03 14:29:36 -04:00
committed by GitHub
parent d6e34f9ee5
commit 6da3d92b42
81 changed files with 127 additions and 127 deletions

View File

@@ -27,7 +27,7 @@ logger = logging.getLogger(__name__)
@deprecated(
since="0.0.29",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_astradb.AstraDBLoader",
)
class AstraDBLoader(BaseLoader):

View File

@@ -14,7 +14,7 @@ if TYPE_CHECKING:
@deprecated(
since="0.0.32",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_google_community.BigQueryLoader",
)
class BigQueryLoader(BaseLoader):

View File

@@ -29,7 +29,7 @@ logger = logging.getLogger(__name__)
@deprecated(
since="0.0.24",
removal="0.2.0",
removal="0.3.0",
alternative_import="docugami_langchain.DocugamiLoader",
)
class DocugamiLoader(BaseLoader, BaseModel):

View File

@@ -13,7 +13,7 @@ logger = logging.getLogger(__name__)
@deprecated(
since="0.0.32",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_google_community.GCSDirectoryLoader",
)
class GCSDirectoryLoader(BaseLoader):

View File

@@ -12,7 +12,7 @@ from langchain_community.utilities.vertexai import get_client_info
@deprecated(
since="0.0.32",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_google_community.GCSFileLoader",
)
class GCSFileLoader(BaseLoader):

View File

@@ -15,7 +15,7 @@ if TYPE_CHECKING:
@deprecated(
since="0.0.32",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_google_community.SpeechToTextLoader",
)
class GoogleSpeechToTextLoader(BaseLoader):

View File

@@ -22,7 +22,7 @@ SCOPES = ["https://www.googleapis.com/auth/drive.readonly"]
@deprecated(
since="0.0.32",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_google_community.GoogleDriveLoader",
)
class GoogleDriveLoader(BaseLoader, BaseModel):

View File

@@ -36,7 +36,7 @@ class DocAIParsingResults:
@deprecated(
since="0.0.32",
removal="0.2.0",
removal="0.3.0",
alternative_import="langchain_google_community.DocAIParser",
)
class DocAIParser(BaseBlobParser):