Skip to content

Commit 42fbcde

Browse files
authored
0.0.14 release and remove deprecation for now (#190)
Release 0.0.14
1 parent 74f3b48 commit 42fbcde

File tree

3 files changed

+268
-225
lines changed

3 files changed

+268
-225
lines changed

Diff for: langchain_postgres/vectorstores.py

-7
Original file line numberDiff line numberDiff line change
@@ -429,13 +429,6 @@ def __init__(
429429
self._async_engine: Optional[AsyncEngine] = None
430430
self._async_init = False
431431

432-
warnings.warn(
433-
"PGVector is being deprecated and will be removed in the future. "
434-
"Please migrate to PGVectorStore. "
435-
"Refer to the migration guide at [https://github.com/langchain-ai/langchain-postgres/blob/main/examples/migrate_pgvector_to_pgvectorstore.md] for details.",
436-
PendingDeprecationWarning,
437-
)
438-
439432
if isinstance(connection, str):
440433
if async_mode:
441434
self._async_engine = create_async_engine(

0 commit comments

Comments
 (0)