Skip to content

Commit

Permalink
Merge branch 'main' into release/0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RaczeQ authored Dec 29, 2023
2 parents 67d0ace + 081a237 commit efa91ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/copy_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def write_file(file_path: Path) -> None:

banned_directories = ["cache", "files", "example_files", "__pycache__", "lightning_logs"]
for i in EXAMPLES_DIRECTORY_PATH.glob("**/*"):
if i.is_file():
if i.is_file() and i.suffix == ".ipynb":
should_copy = True
for banned_directory in banned_directories:
if banned_directory in i.parts:
Expand Down
13 changes: 5 additions & 8 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ docs = [
"ipykernel",
"mkdocs-gen-files",
"mkdocs-awesome-pages-plugin",
"mike",
"mike<2",
"black",
"osmnx",
"matplotlib",
Expand Down

0 comments on commit efa91ae

Please sign in to comment.