Skip to content
Merged
Changes from all commits
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
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ repository = 'https://github.com/Olen/Spond'

[tool.poetry.dependencies]
python = ">=3.11"
aiohttp = ">=3.8.5"
# Floor is a security boundary, not a feature requirement: everything below
# 3.14.3 carries known advisories in the HTTP parsers, up to and including a
# high-severity out-of-bounds read (CVE-2026-69244). As a library we publish
# this range to downstream installs, so it must not resolve to a vulnerable
# aiohttp. Don't lower it without checking the advisories first.
aiohttp = ">=3.14.3"

[tool.poetry.group.dev.dependencies]
# Constraint on `python` is required: pdoc's transitive `markdown2` declares
Expand Down