From 20de8c549774cfe7fd026a28fce522ba8b46e10e Mon Sep 17 00:00:00 2001 From: Dane Date: Thu, 4 Apr 2024 16:18:39 +1100 Subject: [PATCH] Relax version constraint for `playwright` module (#1516) Resolves https://github.com/openai/evals/issues/1513 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9e4f1a9326..39837ef64c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "numpy", "openai>=1.0.0", "pandas", - "playwright==1.32.1", + "playwright", "pydantic", "pytest", "pyyaml",