From 4eff8389388dca17b0a7862f65c3397ff0fd6560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jeremy=20Lain=C3=A9?= Date: Mon, 18 May 2026 10:46:33 +0200 Subject: [PATCH] Allow opensearch-py 3.x Our code is compatible with both opensearch-py 2.x and opensearch-py 3.x, as we now use keyword arguments. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c1f1d25..20334d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ dependencies = [ "aws-requests-auth>=0.3.0", "botocore", - "opensearch-py>=2.0.0,<3.0.0", + "opensearch-py>=2.0.0,<4.0.0", ] dynamic = ["version"]