From dbe2759ed31231258c1987417a67ed9f10cf535b Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Mon, 16 Mar 2026 09:27:28 -0400 Subject: [PATCH] fix: drop version max in tinycss2 pin (#772) This drops the version max in the tinycss2 pin. I'm about to end the Bleach project and this removes one of the fiddly things we had to keep bumping. This also makes Bleach more fragile. Users will own the responsibility for correctness with future versions of tinycss2 going forward. --- CHANGES | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 1892a572..2cae93d3 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,12 @@ None * Add support for pypy 3.11. (#764) +* Drop version max in tinycss2 pin. (#772) + + This removes one of the things we had to keep checking and updating. Users + now own the responsibility for correctness with the version of tinycss2 + they're using. + Version 6.3.0 (October 27th, 2025) ---------------------------------- diff --git a/setup.py b/setup.py index 613a3f2f..b6a1dcf8 100755 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def get_version(): EXTRAS_REQUIRE = { "css": [ - "tinycss2>=1.1.0,<1.5", + "tinycss2>=1.1.0", ], }