Skip to content

Commit

Permalink
openai[patch]: Release 0.2.10 (#28360)
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan authored Nov 26, 2024
1 parent 42b1882 commit e7dc26a
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions libs/partners/openai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "langchain-openai"
version = "0.2.9"
version = "0.2.10"
description = "An integration package connecting OpenAI and LangChain"
authors = []
readme = "README.md"
Expand All @@ -28,26 +28,20 @@ openai = "^1.54.0"
tiktoken = ">=0.7,<1"

[tool.ruff.lint]
select = ["E", "F", "I", "T201"]
select = [ "E", "F", "I", "T201",]

[tool.ruff.format]
docstring-code-format = true
skip-magic-trailing-comma = true

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

[tool.pytest.ini_options]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5 --cov=langchain_openai"
markers = [
"requires: mark tests as requiring a specific library",
"compile: mark placeholder test used to compile integration tests without running them",
"scheduled: mark tests to run in scheduled testing",
]
markers = [ "requires: mark tests as requiring a specific library", "compile: mark placeholder test used to compile integration tests without running them", "scheduled: mark tests to run in scheduled testing",]
asyncio_mode = "auto"
filterwarnings = [
"ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",
]
filterwarnings = [ "ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",]

[tool.poetry.group.test]
optional = true
Expand Down

0 comments on commit e7dc26a

Please sign in to comment.