Files
roboluke/pyproject.toml
Luke Tainton fe1b695048
All checks were successful
Build Docker / Create Docker Image (release) Successful in 1m10s
Snyk / security (push) Successful in 51s
fix(python): update to latest Python 3.13 (#389)
This app's dependencies do not work with Python 3.14's new async event loop changes, so I am setting the upper version limit to 3.13.

Reviewed-on: #389
2025-11-02 17:26:17 +00:00

32 lines
691 B
TOML

[project]
name = "roboluke-tasks"
version = "0.0.0"
description = "Add tasks to a Wekan to do list via Webex and n8n."
readme = "README.md"
authors = [
{name = "Luke Tainton", email = "luke@tainton.uk"},
]
requires-python = "<3.14,>=3.11"
dependencies = [
"webex-bot<1.1.0,>=1.0.3",
"datetime<6.0,>=5.5",
"requests<3.0.0,>=2.32.3",
]
[tool.uv]
dev-dependencies = [
"black<25.9.1,>=25.9.0",
"coverage<8.0.0,>=7.6.10",
"isort<7.0.1,>=7.0.0",
"pylint<4.1.0,>=4.0.0",
"pylint-exit<2.0.0,>=1.2.0",
"pytest<9.0.0,>=8.3.4",
"zipp<4.0.0,>=3.21.0",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"