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
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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)
----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_version():

EXTRAS_REQUIRE = {
"css": [
"tinycss2>=1.1.0,<1.5",
"tinycss2>=1.1.0",
],
}

Expand Down
Loading