https://github.com/pymc-devs/pymc3
Raw File
Tip revision: bc8e8cfa589b7c977abe4fc42f935e698f7498db authored by Thomas Wiecki on 04 July 2022, 15:39:23 UTC
Bump version to 4.1.1.
Tip revision: bc8e8cf
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