pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Fri, 08 Apr 2022 16:05:47 +0200
changeset 49129 74c996f84958
parent 48004 58fe6d127a01
permissions -rw-r--r--
rust-dirstatemap: inline the last `get_or_insert` call The `get_or_insert` method was dangerous because it did not take the `DirstateMap` counters into account. This particular instance does not need to update the counters. Differential Revision: https://phab.mercurial-scm.org/D12527

[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