D12220: tests: require black 22.1.0
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Mar 2 00:18:12 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
We recently reformatted the repo with black 22.1.0. Since black 22.1.0
is the first non-beta release of black and black is committed to
keeping the style stable for 1 year, I think it makes sense to bump
the required black verion to this version.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12220
AFFECTED FILES
tests/hghave.py
CHANGE DETAILS
diff --git a/tests/hghave.py b/tests/hghave.py
--- a/tests/hghave.py
+++ b/tests/hghave.py
@@ -1119,13 +1119,13 @@
return matchoutput('emacs --version', b'GNU Emacs 2(4.4|4.5|5|6|7|8|9)')
- at check('black', 'the black formatter for python (>= 20.8b1)')
+ at check('black', 'the black formatter for python (>= 22.1.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('22.1.0')
@check('pytype', 'the pytype type checker')
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list