Skip to content

Commit a76b0c4

Browse files
authored
Relax datadog version requirement (#231)
Because the datadog package version is 0.x.y, `^0.41.0` is equivalent to `>= 0.41.0 <0.42.0` [1]. This currently locks the version to `0.41.y`. Newer versions of `datadog` have been released with minor changes (currently 0.44.0), but depending on this project prevents pulling them in. [1]: https://python-poetry.org/docs/dependency-specification/
1 parent 603e268 commit a76b0c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424

2525
[tool.poetry.dependencies]
2626
python = ">=3.6.0,<4"
27-
datadog = "^0.41.0"
27+
datadog = "^0.41"
2828
wrapt = "^1.11.2"
2929
ddtrace = "^0.61.1"
3030
importlib_metadata = {version = "^1.0", python = "<3.8"}

0 commit comments

Comments
 (0)