langchain-postgres 0.0.6__tar.gz → 0.0.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langchain-postgres
3
- Version: 0.0.6
3
+ Version: 0.0.8
4
4
  Summary: An integration package connecting Postgres and LangChain
5
5
  Home-page: https://github.com/langchain-ai/langchain-postgres
6
6
  License: MIT
7
- Requires-Python: >=3.9,<4.0
7
+ Requires-Python: >=3.8.1,<4.0.0
8
8
  Classifier: License :: OSI Approved :: MIT License
9
9
  Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Programming Language :: Python :: 3.9
@@ -18,6 +18,7 @@ Requires-Dist: psycopg (>=3,<4)
18
18
  Requires-Dist: psycopg-pool (>=3.2.1,<4.0.0)
19
19
  Requires-Dist: sqlalchemy (>=2,<3)
20
20
  Project-URL: Repository, https://github.com/langchain-ai/langchain-postgres
21
+ Project-URL: Source Code, https://github.com/langchain-ai/langchain-postgres/tree/master/langchain_postgres
21
22
  Description-Content-Type: text/markdown
22
23
 
23
24
  # langchain-postgres
@@ -45,6 +46,12 @@ The package currently only supports the [psycogp3](https://www.psycopg.org/psyco
45
46
  pip install -U langchain-postgres
46
47
  ```
47
48
 
49
+ ## Change Log
50
+
51
+ 0.0.6:
52
+ - Remove langgraph as a dependency as it was causing dependency conflicts.
53
+ - Base interface for checkpointer changed in langgraph, so existing implementation would've broken regardless.
54
+
48
55
  ## Usage
49
56
 
50
57
  ### ChatMessageHistory
@@ -23,6 +23,12 @@ The package currently only supports the [psycogp3](https://www.psycopg.org/psyco
23
23
  pip install -U langchain-postgres
24
24
  ```
25
25
 
26
+ ## Change Log
27
+
28
+ 0.0.6:
29
+ - Remove langgraph as a dependency as it was causing dependency conflicts.
30
+ - Base interface for checkpointer changed in langgraph, so existing implementation would've broken regardless.
31
+
26
32
  ## Usage
27
33
 
28
34
  ### ChatMessageHistory