pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 21 Feb 2023 00:10:20 +0100
changeset 50105 2323b74f927b
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
dirstate: invalidate on all exceptions Previously, we would miss SystemExit, KeyboardInterrupt etc. This "fix" on the bug tested in "test-largefiles-update.t" by preventing the precisely tested situation to happens at all. However this reveal a similar bug with a different timing. I have not been able to deal with that pre-existing bug so far. So I updated the test to point that out.

[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