n8n/packages/@n8n/task-runner-python/pyproject.toml
Declan Carroll 5567b91f6c
fix: Update urllib3 to 2.6.3 in task runner (#24325)
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
2026-01-15 09:19:13 +00:00

30 lines
570 B
TOML

[project]
name = "task-runner-python"
version = "0.1.0"
description = "Native Python task runner for n8n"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"websockets>=15.0.1",
]
[project.optional-dependencies]
sentry = ["sentry-sdk>=2.35.2"]
[tool.uv]
constraint-dependencies = ["urllib3>=2.6.3"]
[dependency-groups]
dev = [
"ruff>=0.14.10",
"ty>=0.0.5",
"pytest>=8.0.0",
"pytest-cov>=5.0.0",
"pytest-asyncio>=0.24.0",
"aiohttp>=3.10.0"
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "-v"