Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactoring pyproject.toml dependencies
  • Loading branch information
rithikanarayan committed Dec 17, 2025
commit a21ae7e8c7acae6b6d26dea1da7cbb0f1693fcc0
35 changes: 13 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,22 @@ classifiers = [
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[tool.poetry.dependencies]
python = ">=3.8.0,<4"
datadog = ">=0.51.0,<1.0.0"
wrapt = "^1.11.2"
# ddtrace = ">=3.19.1,<4; python_version < 3.10"
# ddtrace = ">=4.0.0, <5; python_version >= 3.10"
ddtrace = [
{version = ">=3.19.1,<4", python_version < "3.10"},
{version = ">=4.0.0,<5", python_version >= "3.10"},
dependencies = [
"python>=3.8.0,<4",
"datadog>=0.51.0,<1.0.0",
"wrapt>=1.11.2,<2",
"ddtrace>=3.19.1,<4",
"ujson>=5.9.0",
]
ujson = ">=5.9.0"
botocore = { version = "^1.34.0", optional = true }
requests = { version ="^2.22.0", optional = true }
pytest = { version= "^8.0.0", optional = true }
pytest-benchmark = { version = "^4.0", optional = true }
flake8 = { version = "^5.0.4", optional = true }

[tool.poetry.extras]

[tool.poetry.optional-dependencies]
dev = [
"botocore",
"flake8",
"pytest",
"pytest-benchmark",
"requests",
"botocore>=1.34.0,<2",
"requests>=2.22.0,<3",
"pytest>=8.0.0,<9",
"pytest-benchmark>=4.0,<5",
"flake8>=5.0.4,<6",
]

[build-system]
Expand Down
Loading