Skip to content

Commit

Permalink
Merge branch 'main' into cetagostini/causal-examples
Browse files Browse the repository at this point in the history
  • Loading branch information
juanitorduz committed Sep 6, 2024
2 parents 10a77d0 + f648a31 commit 818ba39
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 27 deletions.
19 changes: 0 additions & 19 deletions mypy.ini

This file was deleted.

34 changes: 26 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ test = [
"graphviz>=0.20.1",
"lifetimes==0.11.3",
"papermill",
"preliz==0.8.0",
"pytest-cov==3.0.0",
"pytest-mock==3.14.0",
"pytest==7.0.1",
"preliz>=0.8.0",
"pytest-cov>=3.0.0",
"pytest-mock>=3.14.0",
"pytest>=7.0.1",
"mlflow>=2.0.0",
]

Expand All @@ -94,10 +94,8 @@ version = { file = "pymc_marketing/version.txt" }

[project.urls]
repository = "https://github.com/pymc-labs/pymc-marketing"
# Other options
#homepage = "https://bambinos.github.io/bambi"
#documentation = ""
#changelog = ""
homepage = "https://www.pymc-marketing.io"


[tool.ruff.lint]
select = ["B", "D", "DOC", "E", "F", "I", "RUF", "S", "UP", "W"]
Expand Down Expand Up @@ -138,3 +136,23 @@ addopts = [
]
filterwarnings = ["ignore::DeprecationWarning:bokeh.core.property.primitive:37"]
testpaths = "tests"

[tool.mypy]
files = "pymc_marketing/*.py"
plugins = "numpy.typing.mypy_plugin"
exclude = "build|dist|docs|examples|tests|setup.py"

[tool.mypy-matplotlib]
ignore_missing_imports = true

[tool.mypy-pymc]
ignore_missing_imports = true

[tool.mypy-seaborn]
ignore_missing_imports = true

[tool.mypy-sklearn]
ignore_missing_imports = true

[tool.mypy-scipy]
ignore_missing_imports = true

0 comments on commit 818ba39

Please sign in to comment.