fix: bump integration test deps for openai

This commit is contained in:
drbh 2025-02-17 14:40:31 +00:00
parent 7d17d7cef7
commit fd611f30c9

View File

@ -1,19 +1,19 @@
[project] [tool.poetry]
name = "text-generation-integration-tests" name = "text-generation-integration-tests"
version = "2.0.1" version = "2.0.1"
description = "Text Generation Inference integration tests" description = "Text Generation Inference integration tests"
authors = ["Nicolas Patry <nicolas@huggingface.co>"] authors = ["Nicolas Patry <nicolas@huggingface.co>"]
requires-python = ">=3.10,<3.13"
dependencies = [ [tool.poetry.dependencies]
"pydantic>2,< 3", pydantic = "> 2, < 3"
"syrupy>=4.8.0", python = ">=3.10,<3.13"
"text-generation>=0.6.0", syrupy = "^4.7.1"
"pytest>=8.3.0", text-generation = "^0.6.0"
"pytest-asyncio>=0.23.1", pytest = "^7.4.0"
"docker>=7", pytest-asyncio = "^0.21.1"
"numpy>=2.0", docker = "^7"
] numpy = "^1.20"
openai = "^1.60.0"
[tool.isort] [tool.isort]
profile = "black" profile = "black"