# HG changeset patch # User Raphaël Gomès # Date 1721299033 -7200 # Node ID 3cb2b5b6626fae982adf5a596e300b7efa707d6a # Parent 493034cc3265f9db8e5f4e18a88045a8c6964d82 hghave: update detection of black version to a newer minimum The CI has moved to version 23.3.0, which is the last one to support 3.7 at runtime. diff -r 493034cc3265 -r 3cb2b5b6626f tests/hghave.py --- a/tests/hghave.py Thu Jul 18 12:36:12 2024 +0200 +++ b/tests/hghave.py Thu Jul 18 12:37:13 2024 +0200 @@ -1113,13 +1113,13 @@ return matchoutput('emacs --version', b'GNU Emacs 2(4.4|4.5|5|6|7|8|9)') -@check('black', 'the black formatter for python (>= 20.8b1)') +@check('black', 'the black formatter for python >=23.3.0') def has_black(): blackcmd = 'black --version' version_regex = b'black, (?:version )?([0-9a-b.]+)' version = matchoutput(blackcmd, version_regex) sv = distutils.version.StrictVersion - return version and sv(_bytes2sys(version.group(1))) >= sv('20.8b1') + return version and sv(_bytes2sys(version.group(1))) >= sv('23.3.0') @check('pytype', 'the pytype type checker')