pyproject.toml
author Simon Sapin <simon.sapin@octobus.net>
Wed, 22 Sep 2021 18:42:00 +0200
changeset 48046 f6d0a89fdf80
parent 48004 58fe6d127a01
permissions -rw-r--r--
dirstate: Don’t drop unrelated data in DirstateMap::set_entry For example, copy source are handled separately. Removing it goes through the `copy_map_remove` method (exposed to Python as `.copymap.pop()`) Differential Revision: https://phab.mercurial-scm.org/D11488

[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