https://github.com/pymc-devs/pymc3
Raw File
Tip revision: cce16130fa2a57593b53902244d627370bb75cfb authored by Thomas Wiecki on 16 December 2021, 09:45:25 UTC
Fix readme underlining.
Tip revision: cce1613
pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict=true

[tool.black]
line-length = 100

[tool.coverage.report]
exclude_lines = [
  "pragma: nocover",
  "raise NotImplementedError",
  "if TYPE_CHECKING:",
]

[tool.nbqa.mutate]
isort = 1
black = 1
pyupgrade = 1
back to top