pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Thu, 08 Apr 2021 16:39:39 +0200
changeset 47075 5554aacd783f
parent 46382 d4c8b4b90ecb
child 46455 5be886200eb6
child 48004 58fe6d127a01
permissions -rw-r--r--
sidedata: gate sidedata functionality to revlogv2 in more places Since revlogv1 is not capable of storing sidedata, we prevent sidedata mechanisms around the revlog layer from doing anything. We however keep the ones that allow a revlogv1 repo to generate sidedata on-the-fly on a push, the pull case simply does not add the sidedata to the revlog. Differential Revision: https://phab.mercurial-scm.org/D10341

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true