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] [build-system]
requires = ["poetry-core>=1.0.0"] requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.poetry] [tool.poetry]
name = "langchain-openai" name = "langchain-openai"
version = "0.2.9" version = "0.2.10"
description = "An integration package connecting OpenAI and LangChain" description = "An integration package connecting OpenAI and LangChain"
authors = [] authors = []
readme = "README.md" readme = "README.md"
@ -28,26 +28,20 @@ openai = "^1.54.0"
tiktoken = ">=0.7,<1" tiktoken = ">=0.7,<1"
[tool.ruff.lint] [tool.ruff.lint]
select = ["E", "F", "I", "T201"] select = [ "E", "F", "I", "T201",]
[tool.ruff.format] [tool.ruff.format]
docstring-code-format = true docstring-code-format = true
skip-magic-trailing-comma = true skip-magic-trailing-comma = true
[tool.coverage.run] [tool.coverage.run]
omit = ["tests/*"] omit = [ "tests/*",]
[tool.pytest.ini_options] [tool.pytest.ini_options]
addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5 --cov=langchain_openai" addopts = "--snapshot-warn-unused --strict-markers --strict-config --durations=5 --cov=langchain_openai"
markers = [ 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",]
"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" asyncio_mode = "auto"
filterwarnings = [ filterwarnings = [ "ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",]
"ignore::langchain_core._api.beta_decorator.LangChainBetaWarning",
]
[tool.poetry.group.test] [tool.poetry.group.test]
optional = true optional = true