pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 30 Sep 2021 18:00:39 +0200
changeset 48120 d4e715d2be0b
parent 47881 58fe6d127a01
child 52033 d4b275587847
permissions -rw-r--r--
dirstate: remove a update_file's special case for tracked file with p2 data This case was fishy and can be dealt with by passing more accurate data a higher level. This clarify the API and prepare for a larger rework of the data we feeds to the dirstate.

[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