https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 2583b7f834f2012bc4a462a576b956cfca722a7c authored by Thomas Wiecki on 15 July 2022, 10:34:28 UTC
Bump version to 4.1.3
Tip revision: 2583b7f
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