Skip to content

Commit

Permalink
groq: release 0.1.0 (#19975)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Apr 3, 2024
1 parent 88cf8a2 commit 9e60159
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions libs/partners/groq/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-groq"
version = "0.0.1"
version = "0.1.0"
description = "An integration package connecting Groq and LangChain"
authors = []
readme = "README.md"
Expand All @@ -20,10 +20,10 @@ optional = true

[tool.poetry.group.test.dependencies]
pytest = "^7.3.0"
pytest-mock = "^3.10.0"
pytest-mock = "^3.10.0"
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 @@ -39,35 +39,33 @@ 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.poetry.group.test_integration]
optional = true

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

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

[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 9e60159

Please sign in to comment.