Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies = [
"mkdocs-same-dir==0.1.3",
"pre-commit==4.1",
"pymdown-extensions==10.14.3",
"ruff==0.9.9",
"ruff==0.12.2",
]

[tool.ruff]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mkdocs-exclude == 1.0.2
markdown-exec[ansi] == 1.10.3

# Developer stuff
ruff == 0.11.6
ruff == 0.12.2
codespell == 2.4.1
pre-commit == 4.2.0

Expand Down
2 changes: 1 addition & 1 deletion s7_deployment/exercise_files/onnx_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
graph = make_graph([node1, node2], "lr", [X, A, B], [Y]) # nodes # a name # inputs # outputs

# onnx graph
# there is no metata in this case.
# there is no metadata in this case.

onnx_model = make_model(graph)

Expand Down