openai[patch]: Release 0.2.10 (#28360)

This commit is contained in:
Bagatur 2024-11-26 08:30:29 -08:00 committed by GitHub
parent 42b18824c2
commit e7dc26aefb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"
@ -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