From 81a172a66b4ca9b48ceff71b8fb4c0623a501454 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Mon, 31 Aug 2026 07:37:19 -0400 Subject: [PATCH] rm pyproject.toml llm library cooldown exceptions Having exceptions to the policy was never a great idea, but it was needed because we were otherwise stuck. Incidentally add a comment on the availability of click v8.5.0. --- changelog.md | 1 + pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 8c14f199..66badf89 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,7 @@ Bug Fixes Internal --------- * Upgrade `sqlglot` to v30.17.0. +* Remove `pyproject.toml` llm library cooldown policy exceptions. 2.18.4 (2026/08/29) diff --git a/pyproject.toml b/pyproject.toml index 87044d15..887fe808 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ # 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. + # version to be 8.5.0, which can be merged around 2 Sep 2026. "click ~= 8.3.3", "clickdc ~= 0.1.1", "cryptography ~= 50.0.0", @@ -102,8 +102,7 @@ include = ["mycli*"] [tool.uv] exclude-newer = '1 week' -# TODO: should be able to remove llm and openai from the exceptions after 2026-08-29 -exclude-newer-package = { cli_helpers = false, openai = false, llm = false } +exclude-newer-package = { cli_helpers = false } [tool.ruff] target-version = 'py310'