branch | stable |
changeset 53035 | 771706c5acfb |
parent 53009 | d655382584c5 |
--- a/tests/hghave.py Thu Mar 06 12:23:27 2025 +0100 +++ b/tests/hghave.py Fri Feb 28 17:54:12 2025 +0400 @@ -666,7 +666,9 @@ return 0, 0 -@checkvers("pygments", "Pygments version >= %s", ('2.5', '2.11', '2.14')) +@checkvers( + "pygments", "Pygments version >= %s", ('2.5', '2.11', '2.14', '2.19') +) def has_pygments_range(v): major, minor = v.split('.')[0:2] return getpygmentsversion() >= (int(major), int(minor))