Skip to content

Commit

Permalink
Merge pull request #66 from tbloron/fix/extra-files
Browse files Browse the repository at this point in the history
Add extra files
  • Loading branch information
guillaume-vignal authored Sep 30, 2024
2 parents 11c8554 + 3e2e11a commit 771044c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion eurybia/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from eurybia.core.smartdrift import SmartDrift

VERSION = (1, 2, 0)
VERSION = (1, 3, 1)

__version__ = ".".join(map(str, VERSION))

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "eurybia"
version = "1.3.0"
version = "1.3.1"
authors = [
{name = "Nicolas Roux"},
{name = "Thomas Bouché", email = "[email protected]"},
Expand Down Expand Up @@ -50,9 +50,8 @@ package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]


[tool.setuptools.package-data]
"eurybia" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"]
"*" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"]

[tool.pytest.ini_options]
testpaths = ["tests"]
Expand Down
8 changes: 4 additions & 4 deletions tutorial/data_validation/tutorial01-data-validation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
"\n",
"#sk-container-id-1 label.sk-toggleable__label-arrow:before {\n",
" /* Arrow on the left of the label */\n",
" content: \"\";\n",
" content: \"\u25b8\";\n",
" float: left;\n",
" margin-right: 0.25em;\n",
" color: var(--sklearn-color-icon);\n",
Expand Down Expand Up @@ -299,7 +299,7 @@
"}\n",
"\n",
"#sk-container-id-1 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {\n",
" content: \"\";\n",
" content: \"\u25be\";\n",
"}\n",
"\n",
"/* Pipeline/ColumnTransformer-specific style */\n",
Expand Down Expand Up @@ -967,8 +967,8 @@
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 0 ns, sys: 16 µs, total: 16 µs\n",
"Wall time: 32.4 µs\n",
"CPU times: user 0 ns, sys: 16 \u00b5s, total: 16 \u00b5s\n",
"Wall time: 32.4 \u00b5s\n",
"INFO: Shap explainer type - <shap.explainers._tree.TreeExplainer object at 0x7fbfe023e760>\n"
]
}
Expand Down

0 comments on commit 771044c

Please sign in to comment.