From fbcfd5e9b1b51e8a02ccbba8f321052a1a419125 Mon Sep 17 00:00:00 2001 From: Leandro Damascena Date: Tue, 28 May 2024 23:31:14 +0100 Subject: [PATCH] Adding jmespath as required library --- poetry.lock | 4 ++-- pyproject.toml | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index 59625e24952..00ea9e6b22a 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "anyio" @@ -3627,4 +3627,4 @@ validation = ["fastjsonschema"] [metadata] lock-version = "2.0" python-versions = ">=3.8,<4.0.0" -content-hash = "9c6daba13649b2b81ae2c1ce47175f31f2a02f6947e7e6edb1055674840cb3a9" +content-hash = "d4e2dabaa4cebba902a7244ea82ac04c15d47915bda1e7fae6e3350d8c646045" diff --git a/pyproject.toml b/pyproject.toml index ad850b46005..6e9129afc18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,12 +39,17 @@ license = "MIT" [tool.poetry.dependencies] python = ">=3.8,<4.0.0" + +# Required libraries installed by default +jmespath = "^1.0.1" +typing-extensions = "^4.11.0" + +# Optional libraries installed with extras aws-xray-sdk = { version = "^2.8.0", optional = true } fastjsonschema = { version = "^2.14.5", optional = true } pydantic = { version = "^1.8.2", optional = true } boto3 = { version = "^1.26.164", optional = true } redis = { version = ">=4.4,<6.0", optional = true } -typing-extensions = "^4.11.0" datadog-lambda = { version = ">=4.77,<6.0", optional = true } aws-encryption-sdk = { version = "^3.1.1", optional = true } jsonpath-ng = { version = "^1.6.0", optional = true }