pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 07 Mar 2024 10:57:16 +0100
changeset 51537 4a8bb136ee77
parent 48004 58fe6d127a01
permissions -rw-r--r--
branchcache: allow to detect "pure topological case" for branchmap We don't rum this detection every time we run the branchcache, that would be costly. However we now do it when running `hg debugupdatecache`. This will help existing repository to benefit from the fastpath when possible.

[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