Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#168)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/pycqa/isort: 5.13.0 → 5.13.2](PyCQA/isort@5.13.0...5.13.2)
- [github.com/psf/black: 23.11.0 → 23.12.0](psf/black@23.11.0...23.12.0)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Dec 21, 2023
1 parent cfb7f20 commit c920a15
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ repos:
- id: check-docstring-first
- id: check-case-conflict # Check for files with names that would conflict on a case-insensitive filesystem
- repo: https://github.com/pycqa/isort
rev: 5.13.0
rev: 5.13.2
hooks:
- id: isort
exclude: '(notebooks|attic|benchmark|testdata)/.*'
- repo: 'https://github.com/psf/black'
rev: 23.11.0
rev: 23.12.0
hooks:
- id: black
exclude: '(notebooks|attic|benchmark|testdata)/.*'
36 changes: 16 additions & 20 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,13 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(
master_doc,
"dysh.tex",
"dysh Documentation",
["Marc Pound", "Victoria Catlett", "Peter Teuben"],
"manual",
)
]
latex_documents = [(
master_doc,
"dysh.tex",
"dysh Documentation",
["Marc Pound", "Victoria Catlett", "Peter Teuben"],
"manual",
)]


# -- Options for manual page output ------------------------------------------
Expand All @@ -187,17 +185,15 @@
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(
master_doc,
"dysh",
"dysh Documentation",
author,
"dysh",
"One line description of project.",
"Miscellaneous",
)
]
texinfo_documents = [(
master_doc,
"dysh",
"dysh Documentation",
author,
"dysh",
"One line description of project.",
"Miscellaneous",
)]

# The reST default role (used for this markup: `text`) to use for all
# documents. Set to the "smart" one.
Expand Down

0 comments on commit c920a15

Please sign in to comment.