From fd611f30c91b8d6f5eb49a2228f8218161076ea4 Mon Sep 17 00:00:00 2001 From: drbh Date: Mon, 17 Feb 2025 14:40:31 +0000 Subject: [PATCH] fix: bump integration test deps for openai --- integration-tests/pyproject.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/integration-tests/pyproject.toml b/integration-tests/pyproject.toml index 1838995e..d60caae5 100644 --- a/integration-tests/pyproject.toml +++ b/integration-tests/pyproject.toml @@ -1,19 +1,19 @@ -[project] +[tool.poetry] name = "text-generation-integration-tests" version = "2.0.1" description = "Text Generation Inference integration tests" authors = ["Nicolas Patry "] -requires-python = ">=3.10,<3.13" -dependencies = [ - "pydantic>2,< 3", - "syrupy>=4.8.0", - "text-generation>=0.6.0", - "pytest>=8.3.0", - "pytest-asyncio>=0.23.1", - "docker>=7", - "numpy>=2.0", -] +[tool.poetry.dependencies] +pydantic = "> 2, < 3" +python = ">=3.10,<3.13" +syrupy = "^4.7.1" +text-generation = "^0.6.0" +pytest = "^7.4.0" +pytest-asyncio = "^0.21.1" +docker = "^7" +numpy = "^1.20" +openai = "^1.60.0" [tool.isort] profile = "black"