https://github.com/pymc-devs/pymc3
Revision db15ae4244e4cc3bba9fd53830d6b523353c8404 authored by Ricardo Vieira on 23 May 2023, 16:04:26 UTC, committed by Ricardo Vieira on 24 May 2023, 08:44:44 UTC
1 parent cafb60b
Raw File
Tip revision: db15ae4244e4cc3bba9fd53830d6b523353c8404 authored by Ricardo Vieira on 23 May 2023, 16:04:26 UTC
Avoid cloning of Minibatch values
Tip revision: db15ae4
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