From 3eceebea55046416d6d0947fc11f787a52b63b82 Mon Sep 17 00:00:00 2001 From: Cristiano Singulani Date: Wed, 11 Dec 2024 15:08:14 +0000 Subject: [PATCH] Temporarily disable sphinx --- .pre-commit-config.yaml | 44 ++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5bd0a12..4f8f0b9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -103,25 +103,25 @@ repos: # notebooks from the docs, so users don't have to wait through the execution # of each notebook or each commit. By default, these will be checked in the # GitHub workflows. - - repo: local - hooks: - - id: sphinx-build - name: Build documentation with Sphinx - entry: sphinx-build - language: system - always_run: true - exclude_types: [file, symlink] - args: - [ - "-M", # Run sphinx in make mode, so we can use -D flag later - # Note: -M requires next 3 args to be builder, source, output - "html", # Specify builder - "./docs", # Source directory of documents - "./build", # Output directory for rendered documents - "-T", # Show full trace back on exception - "-E", # Don't use saved env; always read all files - "-d", # Flag for cached environment and doctrees - "./docs/build/doctrees", # Directory - "-D", # Flag to override settings in conf.py - "exclude_patterns=notebooks/*.ipynb", # Exclude our notebooks from pre-commit - ] \ No newline at end of file + # - repo: local + # hooks: + # - id: sphinx-build + # name: Build documentation with Sphinx + # entry: sphinx-build + # language: system + # always_run: true + # exclude_types: [file, symlink] + # args: + # [ + # "-M", # Run sphinx in make mode, so we can use -D flag later + # # Note: -M requires next 3 args to be builder, source, output + # "html", # Specify builder + # "./docs", # Source directory of documents + # "./build", # Output directory for rendered documents + # "-T", # Show full trace back on exception + # "-E", # Don't use saved env; always read all files + # "-d", # Flag for cached environment and doctrees + # "./docs/build/doctrees", # Directory + # "-D", # Flag to override settings in conf.py + # "exclude_patterns=notebooks/*.ipynb", # Exclude our notebooks from pre-commit + # ] \ No newline at end of file