https://github.com/pymc-devs/pymc3
Raw File
Tip revision: e597d7ded9b5a09283f85344fbe7399bf22b49dd authored by Max Kochurov on 07 November 2023, 15:06:04 UTC
Add Hilbert Space Student T Process
Tip revision: e597d7d
pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict=true
addopts = [
    "--color=yes",
]

[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