File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,13 @@ repos:
1212 hooks :
1313 - id : isort
1414- repo : https://github.com/psf/black
15- rev : ' 21.10b0 '
15+ rev : ' 22.1.0 '
1616 hooks :
1717 - id : black
1818 language_version : python3 # Should be a command that runs python3.6+
19+ # Black misbehaved and broke when click 8.1.0 was released with an internal
20+ # module removed. See https://github.com/psf/black/issues/2964
21+ additional_dependencies : ['click<8.1.0']
1922- repo : https://github.com/pre-commit/pre-commit-hooks
2023 rev : ' v4.0.1'
2124 hooks :
Original file line number Diff line number Diff line change 1+ Updated the black .pre-commit-hook configuration to avoid it breaking due to
2+ `Black issue #2964 <https://github.com/psf/black/issues/2964 >`_.
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ def quoter(request):
1616 def unquoter (request ):
1717 return request .param
1818
19-
2019else :
2120
2221 @pytest .fixture (params = [_PyQuoter ], ids = ["py_quoter" ])
You can’t perform that action at this time.
0 commit comments