Skip to content

Commit 2a96589

Browse files
update amd snapshots
1 parent 2f07766 commit 2a96589

11 files changed

Lines changed: 1140 additions & 290 deletions

pyproject.toml.bak

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
[tool.poetry]
2+
name = "datadog_lambda"
3+
version = "8.125.0.dev0"
4+
description = "The Datadog AWS Lambda Library"
5+
authors = ["Datadog, Inc. <dev@datadoghq.com>"]
6+
license = "Apache-2.0"
7+
readme = "README.md"
8+
repository = "https://github.com/DataDog/datadog-lambda-python"
9+
keywords = [
10+
"datadog",
11+
"aws",
12+
"lambda",
13+
"layer",
14+
]
15+
packages = [
16+
{ include = "datadog_lambda" }
17+
]
18+
classifiers = [
19+
"Programming Language :: Python :: 3.8",
20+
"Programming Language :: Python :: 3.9",
21+
"Programming Language :: Python :: 3.10",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
26+
]
27+
28+
[tool.poetry.dependencies]
29+
python = ">=3.8.0,<3.15"
30+
datadog = ">=0.51.0,<1.0.0"
31+
wrapt = "^1.11.2"
32+
ddtrace = [
33+
{version = ">=3.19.1,<4", python = ">=3.8,<3.10"},
34+
{version = ">=4.1.1,<5,!=4.6.*", python = ">=3.10"}
35+
]
36+
ujson = [
37+
{version = ">=5.10.0,<5.12.0", python = ">=3.8,<3.10"},
38+
{version = "^5.12.0", python = ">=3.10"},
39+
]
40+
urllib3 = [
41+
{version = ">=1.25.4,<1.27", python = ">=3.8,<3.10"},
42+
{version = "^2.6.3", python = ">=3.10"},
43+
]
44+
botocore = { version = "^1.34.0", optional = true }
45+
requests = [
46+
{ version = "^2.22.0", optional = true, python = ">=3.8,<3.10" },
47+
{ version = "^2.33.0", optional = true, python = ">=3.10" },
48+
]
49+
pytest = [
50+
{ version = "^8.3.4", optional = true, python = ">=3.8,<3.10" },
51+
{ version = "^9.0.3", optional = true, python = ">=3.10" },
52+
]
53+
pytest-benchmark = { version = "^4.0", optional = true }
54+
flake8 = { version = "^5.0.4", optional = true }
55+
56+
[tool.poetry.extras]
57+
dev = [
58+
"botocore",
59+
"flake8",
60+
"pytest",
61+
"pytest-benchmark",
62+
"requests",
63+
]
64+
65+
[build-system]
66+
requires = ["poetry-core>=1.0.0"]
67+
build-backend = "poetry.core.masonry.api"
68+
69+
[tool.pytest.ini_options]
70+
addopts = "--benchmark-disable --benchmark-autosave"

0 commit comments

Comments
 (0)