https://github.com/pymc-devs/pymc3
Raw File
Tip revision: a281885fae02cc52ff41762735cfa77a38392878 authored by Ricardo on 22 March 2022, 08:53:01 UTC
Bump version for b5 release
Tip revision: a281885
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