pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 06 Mar 2024 02:20:53 +0100
changeset 51527 fa9e3976a5a0
parent 48004 58fe6d127a01
permissions -rw-r--r--
branchcache: rework the `filteredhash` logic to be more generic We now have a more flexible `key_hashes` tuple. We duplicated various logic in the V2 and V3 version of the cache as the goal is to start changing the logic for V3 in the next few changesets.

[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