pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 24 May 2022 10:34:42 +0200
branchstable
changeset 49215 8d31ef3017c9
parent 48004 58fe6d127a01
permissions -rw-r--r--
run-tests: prevent race-condition when picking a channel Before this, multiple jobs could search the list at the same time and pick the same free channel. We now project this search/assignment with a simple lock.

[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