pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 17 Nov 2021 02:58:44 +0100
changeset 48377 c655483ea6e2
parent 48004 58fe6d127a01
permissions -rw-r--r--
dirstate: add a comment about a racy piece of code during updates This is a bit that is not really correct but works "fine" in practice. Let us write the details down so that people stop wondering how that logic might be correct… It is not. Differential Revision: https://phab.mercurial-scm.org/D11781

[build-system]
requires = ["setuptools", "wheel"]

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