Skip to content

Commit 771044c

Browse files
Merge pull request #66 from tbloron/fix/extra-files
Add extra files
2 parents 11c8554 + 3e2e11a commit 771044c

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

eurybia/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from eurybia.core.smartdrift import SmartDrift
77

8-
VERSION = (1, 2, 0)
8+
VERSION = (1, 3, 1)
99

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

pyproject.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "eurybia"
7-
version = "1.3.0"
7+
version = "1.3.1"
88
authors = [
99
{name = "Nicolas Roux"},
1010
{name = "Thomas Bouché", email = "[email protected]"},
@@ -50,9 +50,8 @@ package-dir = {"" = "."}
5050
[tool.setuptools.packages.find]
5151
where = ["."]
5252

53-
5453
[tool.setuptools.package-data]
55-
"eurybia" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"]
54+
"*" = ["*.csv", "*json", "*.yml", "*.css", "*.js", "*.png"]
5655

5756
[tool.pytest.ini_options]
5857
testpaths = ["tests"]

tutorial/data_validation/tutorial01-data-validation.ipynb

+4-4
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
"\n",
253253
"#sk-container-id-1 label.sk-toggleable__label-arrow:before {\n",
254254
" /* Arrow on the left of the label */\n",
255-
" content: \"\";\n",
255+
" content: \"\u25b8\";\n",
256256
" float: left;\n",
257257
" margin-right: 0.25em;\n",
258258
" color: var(--sklearn-color-icon);\n",
@@ -299,7 +299,7 @@
299299
"}\n",
300300
"\n",
301301
"#sk-container-id-1 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {\n",
302-
" content: \"\";\n",
302+
" content: \"\u25be\";\n",
303303
"}\n",
304304
"\n",
305305
"/* Pipeline/ColumnTransformer-specific style */\n",
@@ -967,8 +967,8 @@
967967
"name": "stdout",
968968
"output_type": "stream",
969969
"text": [
970-
"CPU times: user 0 ns, sys: 16 µs, total: 16 µs\n",
971-
"Wall time: 32.4 µs\n",
970+
"CPU times: user 0 ns, sys: 16 \u00b5s, total: 16 \u00b5s\n",
971+
"Wall time: 32.4 \u00b5s\n",
972972
"INFO: Shap explainer type - <shap.explainers._tree.TreeExplainer object at 0x7fbfe023e760>\n"
973973
]
974974
}

0 commit comments

Comments
 (0)