pyproject.toml
author Raphaël Gomès <rgomes@octobus.net>
Mon, 02 May 2022 11:42:23 +0200
changeset 49821 8f200511cdc7
parent 48004 58fe6d127a01
permissions -rw-r--r--
dirstate: stop using `entry.state()` for logic in `verify` Use the new API instead of the deprecated one. The next changeset will remove the use of `state` in this method altogether (currently still in the messages)

[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