From 63567d69adf7f6118117de065fba927d8f54fef4 Mon Sep 17 00:00:00 2001 From: Filip Halemba Date: Mon, 2 Jan 2023 17:20:18 +0100 Subject: [PATCH] build: relax `datadog` version It seems to me that the version is not intentionally locked to the range >= 0.41, < 0.42, and it is more a matter of the fact that poetry treats versions that start with `0` differently when using `^` ([docs](https://python-poetry.org/docs/dependency-specification/#caret-requirements)) Related issue: - https://github.com/DataDog/datadog-lambda-python/issues/253 Releases of the `datadog` lib (it looks to me that there is no risk): - https://github.com/DataDog/datadogpy/releases --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dddbe9ca..a22fcb12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.7.0,<4" -datadog = "^0.41" +datadog = ">=0.41.0,<1.0.0" wrapt = "^1.11.2" ddtrace = "^1.6.4" importlib_metadata = {version = "^1.0", python = "<3.8"}