langchain-postgres 0.0.12__tar.gz → 0.0.13__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: langchain-postgres
3
- Version: 0.0.12
3
+ Version: 0.0.13
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
@@ -12,8 +12,8 @@ Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Requires-Dist: langchain-core (>=0.2.13,<0.4.0)
15
- Requires-Dist: numpy (>=1,<2)
16
- Requires-Dist: pgvector (>=0.2.5,<0.3.0)
15
+ Requires-Dist: numpy (>=1.21)
16
+ Requires-Dist: pgvector (<0.4)
17
17
  Requires-Dist: psycopg (>=3,<4)
18
18
  Requires-Dist: psycopg-pool (>=3.2.1,<4.0.0)
19
19
  Requires-Dist: sqlalchemy (>=2,<3)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "langchain-postgres"
3
- version = "0.0.12"
3
+ version = "0.0.13"
4
4
  description = "An integration package connecting Postgres and LangChain"
5
5
  authors = []
6
6
  readme = "README.md"
@@ -16,8 +16,8 @@ langchain-core = ">=0.2.13,<0.4.0"
16
16
  psycopg = "^3"
17
17
  psycopg-pool = "^3.2.1"
18
18
  sqlalchemy = "^2"
19
- pgvector = "^0.2.5"
20
- numpy = "^1"
19
+ pgvector = "<0.4"
20
+ numpy = ">=1.21"
21
21
 
22
22
  [tool.poetry.group.docs.dependencies]
23
23
 
@@ -29,13 +29,13 @@ jupyterlab = "^3.6.1"
29
29
  optional = true
30
30
 
31
31
  [tool.poetry.group.test.dependencies]
32
+ greenlet = "<4"
32
33
  pytest = "^7.4.3"
33
34
  pytest-asyncio = "^0.23.2"
34
35
  pytest-socket = "^0.7.0"
35
36
  pytest-cov = "^5.0.0"
36
37
  pytest-timeout = "^2.3.1"
37
- langchain-core = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/core/"}
38
- langchain-standard-tests = {git = "https://github.com/langchain-ai/langchain.git", subdirectory = "libs/standard-tests/"}
38
+ langchain-tests = "0.3.7"
39
39
 
40
40
  [tool.poetry.group.codespell]
41
41
  optional = true
@@ -54,9 +54,9 @@ mypy = "^1.7.1"
54
54
 
55
55
  [tool.ruff.lint]
56
56
  select = [
57
- "E", # pycodestyle
58
- "F", # pyflakes
59
- "I", # isort
57
+ "E", # pycodestyle
58
+ "F", # pyflakes
59
+ "I", # isort
60
60
  "T201", # print
61
61
  ]
62
62
 
@@ -64,9 +64,7 @@ select = [
64
64
  disallow_untyped_defs = "True"
65
65
 
66
66
  [tool.coverage.run]
67
- omit = [
68
- "tests/*",
69
- ]
67
+ omit = ["tests/*"]
70
68
 
71
69
  [build-system]
72
70
  requires = ["poetry-core>=1.0.0"]