Skip to content

Commit c0fa599

Browse files
committed
deps
1 parent 3365e14 commit c0fa599

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

_doc/examples/plot_visualize_pipeline.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565

6666
cmd = "dot -G=300 -Tpng {0} -o{0}.png".format(dot_file)
67-
run_cmd(cmd, wait=True, fLOG=print)
67+
run_cmd(cmd, wait=True)
6868

6969

7070
img = Image.open("graph.dot.png")
@@ -143,7 +143,7 @@
143143
f.write(dot)
144144

145145
cmd = "dot -G=300 -Tpng {0} -o{0}.png".format(dot_file)
146-
run_cmd(cmd, wait=True, fLOG=print)
146+
run_cmd(cmd, wait=True)
147147

148148
img = Image.open("graph2.dot.png")
149149
img
@@ -170,7 +170,7 @@
170170
f.write(dot)
171171

172172
cmd = "dot -G=300 -Tpng {0} -o{0}.png".format(dot_file)
173-
run_cmd(cmd, wait=True, fLOG=print)
173+
run_cmd(cmd, wait=True)
174174

175175
img = Image.open("graph3.dot.png")
176176
img

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
]
2121
dependencies = ["numpy", "onnx>=1.14.0", "scipy"]
2222
description = "Extends the list of supported operators in onnx reference implementation and onnxruntime, or implements faster versions in C++."
23-
keywords = ["onnx", "onnxruntime", "CUDA", "openmp", "cmake", "cython", "pybind11"]
23+
keywords = ["onnx", "cmake", "cython", "scikit-learn", "machine-learning"]
2424
license = {file = "LICENSE.txt"}
2525
name = "mlinsights"
2626
readme = "README.rst"
@@ -55,11 +55,12 @@ dev = [
5555
"pytest",
5656
"pytest-cov",
5757
"ruff",
58-
"scikit-learn",
58+
"scikit-learn>=1.3.0",
5959
"skl2onnx>=1.14.1",
6060
"sphinx",
6161
"sphinx-gallery",
6262
"sphinx-issues",
63+
"sphinx-runpython",
6364
"tqdm",
6465
"wheel",
6566
]
@@ -70,6 +71,7 @@ requires = [
7071
"cmake",
7172
"numpy",
7273
"pybind11",
74+
"scikit-learn>=1.3.0",
7375
"scipy",
7476
"setuptools",
7577
"wheel",

requirements-dev.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,14 @@ pytest-cov
1818
rstcheck[sphinx,toml]
1919
ruff
2020
seaborn
21+
skl2onnx>=1.14.1
2122
sphinx
2223
sphinx-gallery
2324
sphinx-issues
24-
git+https://github.com/sdpython/sphinx-runpython.git
25+
sphinx-runpython
2526
tomli
27+
torch
28+
torchvision
29+
torchaudio
2630
tqdm
2731
wheel

0 commit comments

Comments
 (0)