Skip to content

Commit

Permalink
astradb[patch]: fix core dep (#17606)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Feb 16, 2024
1 parent 5240eca commit cc562e7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
16 changes: 14 additions & 2 deletions libs/partners/astradb/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 9 additions & 11 deletions libs/partners/astradb/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
langchain-core = ">=0.1"
langchain-core = "^0.1"
astrapy = "^0.7.5"
numpy = "^1"

Expand All @@ -17,11 +17,11 @@ optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.3.0"
freezegun = "^1.2.2"
pytest-mock = "^3.10.0"
pytest-mock = "^3.10.0"
syrupy = "^4.0.2"
pytest-watcher = "^0.3.4"
pytest-asyncio = "^0.21.1"
langchain-core = {path = "../../core", develop = true}
langchain-core = { path = "../../core", develop = true }

[tool.poetry.group.codespell]
optional = true
Expand All @@ -42,28 +42,26 @@ ruff = "^0.1.5"

[tool.poetry.group.typing.dependencies]
mypy = "^0.991"
langchain-core = {path = "../../core", develop = true}
langchain-core = { path = "../../core", develop = true }

[tool.poetry.group.dev]
optional = true

[tool.poetry.group.dev.dependencies]
langchain-core = {path = "../../core", develop = true}
langchain-core = { path = "../../core", develop = true }

[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]

[tool.mypy]
disallow_untyped_defs = "True"

[tool.coverage.run]
omit = [
"tests/*",
]
omit = ["tests/*"]

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit cc562e7

Please sign in to comment.