pyproject.toml
author Arun Kulshreshtha <akulshreshtha@janestreet.com>
Tue, 23 Aug 2022 17:31:13 -0400
changeset 49440 a0b57cabc245
parent 48004 58fe6d127a01
permissions -rw-r--r--
bisect: bypass changectx when translating revs to nodes When resolving the revset given by the user into node hashes, use the changelog to perform the translation rather than the repo object. This avoids the overhead of constructing a changectx which is immediately discarded.

[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