black.toml
author Gregory Szorc <gregory.szorc@gmail.com>
Mon, 04 Nov 2019 23:44:10 -0800
branchstable
changeset 43413 acdd4f28f6a3
parent 43386 2247bf3cec76
child 44147 5e84a96d865b
permissions -rw-r--r--
automation: install python3-venv Debian package Debian's python install has a crippled venv by default, as it is lacking ensurepip. When you try to run `python3 -m venv` it tells you to install `python3-venv`. So this commit does that in our automation environment so we can fully test installing Mercurial using venv+pip with the system Python. Differential Revision: https://phab.mercurial-scm.org/D7229

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
| contrib/python-zstandard/
'''
skip-string-normalization = true
quiet = true