pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Fri, 08 Apr 2022 16:04:17 +0200
changeset 49128 464747faef14
parent 48004 58fe6d127a01
permissions -rw-r--r--
rust-dirstatemap: add `set_cached_mtime` helper method This will help remove the `get_or_insert` method, which is dangerous because it does not take the `DirstateMap` counters into account Differential Revision: https://phab.mercurial-scm.org/D12526

[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