Skip to content

Commit

Permalink
Merge pull request jupyter-book#65 from ExecutableBookProject/execute…
Browse files Browse the repository at this point in the history
…_fix

removing execute from book build CLI
  • Loading branch information
choldgraf authored Mar 30, 2020
2 parents ec908f4 + 1b2ecd2 commit d4f46fd
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions jupyter_book/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,7 @@ def main():
@click.option("--path-output", default=None, help="Path to the output artifacts")
@click.option("--config", default=None, help="Path to the YAML configuration file")
@click.option("--toc", default=None, help="Path to the Table of Contents YAML file")
@click.option(
"--execute/--no-execute",
is_flag=True,
help="Execute notebooks before converting them.",
)
def build(path_book, path_output, config, toc, execute):
def build(path_book, path_output, config, toc):
"""Convert a collection of Jupyter Notebooks into HTML suitable for a book.
"""
# Paths for our notebooks
Expand Down

0 comments on commit d4f46fd

Please sign in to comment.