https://github.com/pymc-devs/pymc3
Raw File
Tip revision: d9748618390a12bafd42ba6bfbe30bd5b7c8f560 authored by Michael Osthege on 03 July 2022, 12:39:26 UTC
Bump to `4.1.0`
Tip revision: d974861
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