n8n/packages/@n8n/task-runner-python/pyproject.toml
Declan Carroll a3f247272b
chore: Bump Python to 3.14 and pip to 26.1 in runner images
- Bump Python from 3.13 to 3.14 in alpine and distroless runner Dockerfiles,
  task-runner-python pyproject, .python-version, README, and ci-python workflow
- Bump pip floor from 26.0 to 26.1 (alpine runtime stage); add explicit pip
  upgrade in distroless python-runner-builder so site-packages copied into
  the final image carries the upgraded pip
- Parameterize hardcoded python paths in distroless runtime-prep stage so
  future ARG bumps no longer require search-and-replace across stages
- Regenerate uv.lock: requires-python plus minimum-needed bumps to native-ext
  packages that ship cp314 wheels (aiohttp, multidict, propcache, yarl,
  frozenlist, coverage); dev tooling versions held

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-07 16:03:12 +01:00

40 lines
759 B
TOML

[project]
name = "task-runner-python"
version = "0.1.0"
description = "Native Python task runner for n8n"
readme = "README.md"
requires-python = ">=3.14"
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",
"setuptools>=80.10.2",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "-v"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]