pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Thu, 14 Dec 2023 09:57:25 +0100
changeset 51264 47a34afda7ad
parent 48004 58fe6d127a01
permissions -rw-r--r--
rust-index: only access offsets if revlog is inline Accessing the `RwLock` ended up showing up in profiles even with no contention. Offsets only exist for inline revlogs, so gate everything behind an inline check.

[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