Skip to content
Merged
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
94 changes: 0 additions & 94 deletions docs/python/examples/plot_dl_keras.py

This file was deleted.

2 changes: 0 additions & 2 deletions docs/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
keras
keras-onnx
sphinx
sphinx-gallery
pyquickhelper
Expand Down
2 changes: 2 additions & 0 deletions tools/doc/rename_folders.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ def rename_folder(root):
renamed.append((r, name, into))
full_src = os.path.join(r, name)
full_into = os.path.join(r, into)
if os.path.exists(full_into):
raise RuntimeError("%r already exists, previous documentation should be removed.")
print("rename %r" % full_src)
os.rename(full_src, full_into)

Expand Down