pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 06 Mar 2024 01:43:51 +0100
changeset 51525 530b4cffd6a6
parent 48004 58fe6d127a01
permissions -rw-r--r--
filteredhash: split the computation of revision sets The branch2's filteredhash combines the filtered revisions and the obsolete ones, this will creates issue for implicit reference to heads we want to introduce for the v3 of the branch cache format. So we isolate this logic for alternative use.

[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