From 6d43bd7e11d0449c2db248c7bcfa01076cfc748b Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 3 Nov 2023 10:32:04 +0000 Subject: [PATCH] [setup.py] require unicodedata2>=15.1.0 for Unicode 15.1 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index d5bd49c6d..619bb0409 100755 --- a/setup.py +++ b/setup.py @@ -110,8 +110,7 @@ extras_require = { # of the Unicode Character Database instead of the built-in unicodedata # which varies between python versions and may be outdated. "unicode": [ - # Python 3.12 will have Unicode 15.0, so the backport is not needed. - ("unicodedata2 >= 15.0.0; python_version <= '3.11'"), + ("unicodedata2 >= 15.1.0; python_version <= '3.12'"), ], # for graphite type tables in ttLib/tables (Silf, Glat, Gloc) "graphite": ["lz4 >= 1.7.4.2"],