Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Internal
* Upgrade `pygments` to v2.21.0, removing hacks for `set*` identifiers.
* Upgrade `llm` dependency to v3.33, removing pin for `openai`.
* Remove `pygments` cooldown exception as no longer needed.
* Upgrade `mypy` dev dependency to v2.3.1.
* Upgrade `ruff` dev dependency to v0.16.3.


2.16.0 (2026/08/22)
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ classifiers = [
]

dependencies = [
# click 8.4.2 breaks the pager on Windows; check the next
# version for https://github.com/pallets/click/pull/3739
# TODO click 8.4.2 breaks the pager on Windows; check the next
# version after 8.4.2 for https://github.com/pallets/click/pull/3739
# which has been merged. The click changelog predicts the next
# version to be 8.5.0.
"click ~= 8.3.3",
"clickdc ~= 0.1.1",
"cryptography ~= 50.0.0",
Expand Down Expand Up @@ -79,14 +81,14 @@ all = [
dev = [
"behave ~= 1.3.3",
"coverage ~= 7.13.4",
"mypy ~= 2.3.0",
"mypy ~= 2.3.1",
"pexpect ~= 4.9.0",
"pytest ~= 9.1.1",
"pytest-cov ~= 7.0.0",
"pytest-random-order ~= 1.2.0",
"tox ~= 4.35.0",
"pdbpp ~= 0.11.7",
"ruff ~= 0.15.0",
"ruff ~= 0.16.3",
]

[project.scripts]
Expand Down
Loading