pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 22 Feb 2023 01:08:25 +0100
changeset 50128 2f60cd6442fd
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
dirstate: only reload the dirstate when it may have changed This reinstall the equivalent of what the `filecache` was doing. However it does it at the dirstate level. There is a double motivation for this: - This avoid duplicating logic with the dirstate "identity" logic. - This increase the lifetime of the `dirstate` object, helping to implement change scoping.

[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