pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 17 Nov 2021 20:26:33 +0100
changeset 48386 6becd5773133
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
dirstate: stop gathering parentfiledata in update_file_p1 Gathering information here assume that they are valid cache information for a clean file. It is true most of the time, but not garanteed. So we drop this and will let the next `hg status` call record actual information. Differential Revision: https://phab.mercurial-scm.org/D11790

[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